Hi,
I have an elasticsearch cluster of version 2.4 (lucene version 5.5.4). Near I installed a new cluster of version 7.1 (lucene version 8.1.0) and indexed all data (~2.7 billion documents). Both of cluster use Java 1.8.
But I noticed the significant increase of latency for queries with range clauses:
...
{
"range": {
"metadata.sums": {
"from": 1127039.0,
"to": 1127040.0,
"include_lower": true,
"include_upper": false,
"boost": 1.0
}
}
...
The old cluster executes that queries 304 msec but for the new cluster the same query takes it 20 sec.
I can't understand what's the matter. What's changed? How to fix the problem?
Thanks