Elasticsearch same query has different performance

I have 2 nodes in my cluster.
n1: [master:true data:true] 8GB RAM 500GB Disk space
n2: [master:false data:true] 8GB RAM 500GB Disk space

Only one index for test(about 20000 docs), 5shards, 1replica
Run the same query 10000+ times in one thread, cost of time like:

  1. 5ms
  2. 13ms
  3. 4ms
  4. 12ms
  5. 4ms
  6. 13ms
    ....

Odd tests perform much better than even tests, any idea about this?

1 Like

Hi @ans76,

From where are you running the tests and towards what node? Each time towards one of the nodes? Have you tried running 100 times the same query towards the same node and then switching to another node?

Also take a look to the query and the data you are retrieving. Check the size of the documents and data, as maybe the JVM is doing garbage collections and you need to adapt the HEAP size every 2 requests, not sure.

You can check the amount of GCs via _node/stats API (_node/stats/jvm?pretty I guess).

Hope this is helpfull...

Regards and good luck!
Eduardo

Thanks for your reply. I run all the tests use one of nodes as coordinate node that get above results. and then switch to another node didn't change at all, and also gc is stable.

@eedugon There's one more thing, node n1 ping n2 cost 1.5ms on average, so does switch, any chance may network issue incurred?

Hi @ans76,

About your network concern, I don't believe there's any problem with the 1.5ms reply on average, but it could be.
Anyway the topic is interesting, I would suggest to do the following tests:

Regards!
Eduardo

This topic was automatically closed 28 days after the last reply. New replies are no longer allowed.