Hi There,
I am running ELasticSearch 6.0. i have a query with term aggregation to a "not-analyzed" field, but I am getting inaccurate count. i have set the size for aggregation to "100" as follows.
for example when set term aggregation for "title", i get
journal of biological chemistry (11)
but when explicitly search for "journal of biological chemistry" i get "14" records matching
"aggs": {
"title": {
"terms": {
"field": "titlenav",
"size": 100,
"show_term_doc_count_error": true
}
}
}
Thanks