Hi,
When I perform a search query, it gives me same result every time. But as soon as I update any document (fields which are not used in search query), the result of the same query changes and score of that particular document decreases.
The updated document is still in the result but order is different (lower).
Can someone please suggest me what to do ?
I need the same result regardless of document update.
Search query:
{
"from": 0,
"size": 10,
"query": {
"bool": {
"must": [
{
"match": {
"cityName": {
"query": "Dubai"
}
}
},
{
"match": {
"categoryName": {
"query": "food"
}
}
}
]
}
}
}
Thanks!