Spring Data makes it easier to build Spring-powered applications that use new data access technologies such as non-relational databases, map-reduce frameworks, and cloud based data services as well as provide improved support for relational database technologies.
0
votes
2answers
44 views
Spring Data Elasticsearch external ES Server
I am using Spring Data ElasticSearch for my application, however Spring Data ElasticSearch embeds ES inside spring, is there anyway I can connect it to an external elasticsearch server?
0
votes
2answers
202 views
Parent/Child relationships in spring-data-elastic-search
I'm using Spring-Data-Elastic-Search for searching/caching purposes.
I need to execute a query which uses child(TermCache) and parent(ConceptCache) properties
and return instances of child ...
0
votes
1answer
297 views
spring-data-elasticsearch searching over multiple indices
i have a searchfield on my page and this searchfield should search over more than one indice.
I can search for one indice without a problem, like described in the documentation of ...
0
votes
1answer
2k views
Spring Data Elastic Search with Nested Fields and mapping
I am using spring-data-elasticsearch and elasticsearch together to query documents. I'd like to do nested queries on nested documents.
I have this in java :
@Document(indexName = "as", type = "a", ...
-1
votes
1answer
16 views
Connect to in-memory ElasticSearch from Spring Boot
Can anyone please advise, what is the address if I am trying connect to an ElasticSearch node that is in-memory(just using the default config) while using Spring boot ? I am looking at something like ...
1
vote
0answers
49 views
How to modeling when use Spring data mongo and Spring data elasticearch?
I want to use mongo and ElasticSearch in my projects, and I also like adopt Spring Data Mongo and Spring Data ElasticSearch, but both has their Repository and model specs, how to use them together?
...
1
vote
0answers
25 views
Specify indexName and type of index in elasticsearch in a properties file
I'm using elasticsearch and spring in my application. For each index type, I have a document mapping. Using @Document annotation I have specified the indexName and type of index. For eg: ...
1
vote
0answers
44 views
Disable _source field using spring data elasticsearch
When indexing the entity(document) the default behavior is to index all the fields of the entity.
By default source is enabled and store is disabled to all fields.
But If I want to index some of the ...
1
vote
0answers
95 views
MultiField mapping using spring-data-elasticsearch annotations
I am trying to use spring-data-elasticsearch to set up mappings for a type that is equivalent to the json configuration below and I am running into issues.
{
"_id" : {
"type" : "string",
...
1
vote
0answers
29 views
Storing nested documents in elasticsearch which may have nullable fields
I'm using elasticsearch for indexing in my application. I'm trying to store a document which in turn contains a field of a custom data structure:
@Document(indexName="sampleIndex", type="user")
class ...
0
votes
0answers
20 views
assertNoBlankInWildcardedQuery causing issues in querying with spaces in elasticsearch
I'm using spring data elasticsearch in my application. The search terms may include spaces and I have to query elasticsearch for the same. When I give spaces in queries on elasticsearch console, it ...
0
votes
0answers
68 views
Index data from PostgreSQL to Elasticsearch
I want to setup an elasticsearch cluster using multicast feature.One node is a external elasticsearch node and the other node is a node client (client property set as true-not hold data).
This node ...
0
votes
0answers
75 views
Spring-data elasticsearch
How can I make existing data searchable using elasticsearch. My project is based on spring-data elasticsearch spring-data-elasticsearch