spring-data-elasticsearch Questions
3
Solved
I'm trying to use ElasticSearch in my application for full text search and at this time I'm trying use autocomplete analyser:
{
"settings": {
"number_of_shards": 1,
"analysis": {
"filter": {
...
Cannon asked 26/3, 2016 at 18:14
1
Solved
I'm using spring-boot-elasticsearch for the first time. I've now figured out how to describe my serial difference pipeline query using elastics java api. This query, as you'll see below is rather l...
We asked 24/7, 2020 at 14:1
1
Solved
Summary
Recently we upgraded to Spring Data Elasticsearch 4.x. Part of this major release meant that Jackson is no longer used to convert our domain objects to json (using MappingElasticsearchConve...
Chisel asked 6/7, 2020 at 23:0
4
Solved
I'm developing a system which is planning to use elasticsearch as an data repository.
I'm trying to choose the best way to develop my application that can index and query data from elasticsearch.
T...
Corinacorine asked 5/1, 2014 at 7:5
1
I'm trying to disable the _source field with Spring Data Elasticsearch, in order to add this property:
"_source": {
"enabled": false
}
I'm doing the following in a @Configuration class:
@Bean...
Dishpan asked 5/8, 2016 at 13:42
4
Solved
From the research I have done it seems that the two do not work together because of HTTP only support for Amazon Elasticsearch.
Hoping someone can clarify if in fact it is not something that is po...
Danie asked 30/11, 2015 at 23:24
1
Solved
Goal: create Elasticsearch index aimed to be loaded with 10 million simple documents. Each document is basically "Elastisearch id", "some company id" and "name". Provide search-as-suer-type feature...
Quiteria asked 11/4, 2020 at 14:38
2
Solved
Hi I am using elastic search Spring data. Domain structure of my project keeps on changing.So I have to drop the index in order to change the mapping every time. To overcome this problem, I am usin...
Hypaethral asked 14/8, 2015 at 17:25
1
I'm new to the community so I apologise if I do something wrong.
I'm using spring data elasticsearch (2.0.4/2.4)
And I would like to make a bulk insert and delete.
But ElasticsearchTemplate only co...
Eternity asked 28/5, 2017 at 11:31
1
I am working with Spring Data Elasticsearch , Spring Data has support for Transactional queries .
This i am enabling by @Transactional annotation.
But since elasticsearch does not have any ACID p...
Rebroadcast asked 22/12, 2015 at 20:32
2
Solved
I'm using Spring Boot 2.0.3 Release and i have problem while instantiating org.elasticsearch.client.Client. My code:
Client client = new PreBuiltTransportClient(Settings.builder()
.put("cluster.n...
Antonantone asked 26/6, 2018 at 9:53
4
Solved
I'm looking for best approach to make complex query to Elasticsearch with OR logic from java.
I really need something like ((A and B) or (C and D) or (E and F and G)).
Now I using ElasticsearchT...
Nashville asked 27/2, 2020 at 8:2
2
Following is my WorkroomDTO:
@NotNull
private Instant createdOn;
@JsonInclude(JsonInclude.Include.NON_NULL)
private Instant changedOn;
As you can see i am using Java 8 Instant class.
In the...
Technic asked 17/2, 2020 at 14:31
1
Solved
looking for some help using the SpEL inside @Document annotation in reference to:
spring-data-elasticsearch:3.2.3.RELEASE and spring boot 2.2.1 RELEASE
i am having trouble googling for help with ...
Tweeddale asked 11/12, 2019 at 2:46
3
Solved
I don't understand the relationship between the High Level REST CLient (which replaces the Transport Client) and Spring Data Elasticsearch.
There are tutorials (https://www.baeldung.com/spring-dat...
Shabbir asked 15/8, 2018 at 4:47
3
I'm using embedded elasticsearch with spring boot and I was trying to use annotations for configuring settings and mappings. I followed this Tutorial which explains how to implement searching over ...
Depressomotor asked 28/5, 2017 at 17:42
1
Solved
I am using Spring Boot and ElasticSearch. When I am trying to upsert using Spring, it is throwing DocumentMissingException when there is no document present in the ElasticSearch. The same code work...
Cocks asked 13/9, 2019 at 15:24
4
I'm trying to do this sample tutorial, in order to get familiar with elasticsearch. but running the project it gives this error in intellij:
org.elasticsearch.transport.NodeDisconnectedException: ...
Traipse asked 22/8, 2017 at 9:29
3
Solved
I am in a situation where I am using Spring boot and AWS elasticsearch service. AWS Elasticsearch service which only provides REST interface.
Elasticsearch Rest Client is here.
Simply, Is it poss...
Amata asked 17/7, 2017 at 1:25
2
Solved
I want to use Spring Data Elasticsearch in my project and I saw this:
The well known TransportClient is deprecated as of Elasticsearch 7.0.0 and is expected to be removed in Elasticsearch 8.0.
M...
Sturgis asked 4/3, 2019 at 10:50
1
Solved
Spring Data ES 3.2.0.M1 still uses old TransportClient instead of HighLevelRestClient
Spring Data ES 3.2.0.M1 supports High Level Rest Client, see Add support for Java High Level REST Client. I've...
Driven asked 18/2, 2019 at 20:21
2
Solved
I am new to Elastic and spring-data-elastic. I am been searching here and other areas of the web, but so far have been unable to find the answer to my question. I am hoping SO might be able to help...
Crossbill asked 30/9, 2016 at 11:25
3
Solved
In Spring Data Elasticsearch - I noticed something that looks like a bug with the generated findAllByFoo type methods.
These seem to be limited to the default size (of 10) - which goes against the ...
Cobby asked 9/12, 2014 at 20:56
2
Solved
I am using spring-data-elasticsearch for a project to provide it with full text search functionality. We keep the real data in a relational database and relevant metadata along with respective id i...
Aguayo asked 7/2, 2016 at 10:11
4
Hi friends i am developing spring boot project with elastic search i have setup elastic search on local machine and i have installed Head plugin in elastic search . My elastic search is setup corre...
Candra asked 5/11, 2015 at 11:20
© 2022 - 2024 — McMap. All rights reserved.