Jest is a HTTP REST client for Java's Elasticsearch. Use with [elasticsearch] and/or [java]
Questions tagged [elasticsearch-jest]
161 questions
0
votes
1 answer
Does JEST support gzip for bulk operation?
Does JEST Java client lib for elasticsearch support gzip (compression) for huge bulk operations? I'm uploading thousands of documents in one go.

musicsquad
- 95
- 1
- 3
- 9
0
votes
1 answer
Elasticsearch updating the analyzer creates a members field
I came across a problem where I needed to update the stopwords on an index, which was specifying the english analyzer as the default analyzer. Typically, the analyzers are specified in the settings for the index:
{
"twitter": {
"settings": {
…

BrDaHa
- 5,138
- 5
- 32
- 47
0
votes
1 answer
Elastic search to be deployed as embedded or client/server mode
Which is the preferred mode of deployment for Elasticsearch, embedded mode (embedded in to the product/application) or client/server mode?
Apache Solr and most of the SQL, NOSQL databases are usually deployed in client/server mode. Where server runs…

Ganesh
- 169
- 2
- 10
0
votes
1 answer
Is there way to provide a date converter for Elasticsearch Java API?
I have a legacy domain object that stores date/times in milliseconds as a long. I now want to index this object in ES using JestClient, which is just a wrapper around the ES Java API.
Is there a way to tell ES to convert this long value to a Date in…

wxkevin
- 1,634
- 2
- 25
- 44
0
votes
1 answer
Creating mappings using ES Document.Builder Class in JEST
I am trying to create mappings for my indext in JEST using the Document.Builder class from ElasticSearch. I have followed the example specified bellow in the readme for JEST but it doesn't seem to work.
RootObjectMapper.Builder…

enwafor
- 101
- 1
- 8
0
votes
0 answers
Jest keeps returning all documents with different queries
I am using Jest, a Java Http REST client for Elasticsearch for my Android application. From android I want to search for recipes, according to this tutorial Building a Recipe Search Engine.
While using a simple search from terminal such as
curl…

pateheo
- 430
- 1
- 5
- 13
0
votes
1 answer
ElasticSearch querying using JestClient seems to be very slow
I have recently read about Elasticsearch, and I am using Jest to interact with Amazon Elasticsearch Service. I have been able to leverage Jest's documents and index data into the ES.
However, when I try to query using a boolean query, I see…

Tejas Chopra
- 133
- 1
- 2
- 12
0
votes
1 answer
Time out on querying large elastic search index
I queried a large index using a very large size, as I want to retrieve every matching document in a large index, but I got a timeout after a long time. No result is returned. Is there any other way to get all data without timing out?
My…

DevEx
- 4,337
- 13
- 46
- 68
0
votes
1 answer
Multiple nodes and replication in elasticsearch, to have optimistic performance
I am trying to connect multiple nodes in elastic search with 5 nodes.
2 nodes as master nodes and 3 as data nodes.
any effect if I use the replication as 2? performance will be good or not?

sweety
- 23
- 8
0
votes
0 answers
When exactly should I index the documents in elasticsearch?
I have to index the documents to show in the searches, but according to the input, the documents will be changing, for every search. So, currently, I am indexing when the user searches, But I'm deleting it just after the process, And again I'm doing…

sweety
- 23
- 8
0
votes
3 answers
How to delete documents from index with query using jest elasticsearch query
I am trying to delete documents from elastic search which have certain criteria to filter from the index using deleteQueryBuilder.

sweety
- 23
- 8
0
votes
1 answer
How to get creation time of indices in elastic search using Jest
I am trying to delete the indexes from elasticsearch which are created 24 hours before. I am not finding a way to get the creation time of indices for the particular node. Using spring boot elastic search, this can be accomplished. However, I am…

sweety
- 23
- 8
0
votes
1 answer
"MapperParsingException[Analyzer [second] not found for field [Name]]"
I have created an index in Elasticsearch with the following settings:
{
"my_index" : {
"aliases" : { },
"mappings" : { },
"settings" : {
"index" : {
"creation_date" : "1461229073677",
"uuid" :…

panipsilos
- 2,219
- 11
- 37
- 53
0
votes
1 answer
Should we not be closing the connection after response in JestHttpClient for elastic search
This is with respect to the code at
https://github.com/searchbox-io/Jest/blob/master/jest/src/main/java/io/searchbox/client/http/JestHttpClient.java
In this code snippet
public T execute(Action clientRequest) throws…

sushil
- 165
- 1
- 9
0
votes
1 answer
How to add a project and its dependecies using Maven?
I have a Project (A) that uses I class Library(B) that my team and I developed.
The Class Library (B) imports the searchbox-io.Jest project to access my ElasticSearch Engine and does some processing. The Project (A) implements the Restful service to…