Range query doesn't return all documents in index

Hi,
I've a problem. Each time Range query doesn't return the same number of documents.
This is my query:

GET muv-tweet-full*/_search
{
"query": {
"range" : {
"spam_prediction_probability" : {
"gte" : 0.15,
"lte" : 0.85
}
}
}
}

But each time vary the total hits number.
Any ideas?

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