I used this query curl localhost:9200/tweets/user/_search?size=25
on es 1.4.2
and I got the following result:
{
"took": 5,
"timed_out": false,
"_shards": {
"total": 6,
"successful": 6,
"failed": 0
},
"hits": {
"total": 294633,
"max_score": 1,
"hits": [
...
with a list of documents.
When I ran the same query on es 2.3.0
, I got same hits but the documents were completely different.
What could be the reason?