python (12.9k questions)
javascript (9.2k questions)
reactjs (4.7k questions)
java (4.2k questions)
java (4.2k questions)
c# (3.5k questions)
c# (3.5k questions)
html (3.3k questions)
How to determine the correct size for terms aggregation, which will produce accurate aggregation results?
As I read through document for Terms Aggregation, I came across the fact that the results from Term Aggregation are not always accurate, but we can increase the size to get the accurate results.
I kno...

Nishikant Tayade
Votes: 0
Answers: 1
Error in per bucket doc_count_error_upper_bound for Term Aggregation?
Below configuration for Elasticsearch:
1 Cluster
1 Node
1 Index
3 Shards (1 Replica shard for each primary, but in UNASSIGNED state as there is only 1 node).
I have indexed document and those are sp...

Nishikant Tayade
Votes: 0
Answers: 0
Does Elasticsearch accept 1 or 0 for searching on boolean field?
this is part of my elasticsearch query:
{
"match": {
"value": {
"query": "1",
}
}
}
value is a boolean field in my index, ...

saba safavi
Votes: 0
Answers: 2
How to hit ElasticSearch using Apache HttpClient
I have SearchRequest object with all the Elasticsearch(ES) query data set. I cannot use RestHighLevel client for my usecase because it requires endpoint need to be passed at the time of instantiation....
priyadhingra19
Votes: 0
Answers: 1