I have 3 elastic search nodes setup. I have defined the following settings
"number_of_shards" : "6",
"number_of_replicas" : "1"
Every time I run the below query
GET na-products/elasticparentchildtitle/_search?explain
{
"query": {
"match_all": {}
}
}
I get different results. I also see the node returning the results are different every time.
In a test environment, if I try the same index in single node machine, i get the same results.