Hey,
Architecture:
2 client python machines running the same code with same libraries/packages.
1 elasticsearch node (with 5 shards)
1 elasticsearch index
I'm running the following query:
{
"query": {
"multi_match": {
"fields": ["field1", "field2"],
"boost": 1,
"query": "test t",
"fuzziness": 1,
"type": "best_fields"
}
}
}
From client#1 - I get 2 results
From client#2 - I get 0 results
Why could this be?
Thank you 