我寫了一個elasticsearch查詢得到的只有排名前10位的結果降序排列如何限制Elasticsearch
{
"aggs": {
"group_by_user": {
"terms": {
"field": "user.raw",
"size": 10
}
}
}
}
我得到以下錯誤 我收到以下錯誤
Result window is too large, from + size must be less than or equal to: [10000] but was [10250]
如何更改我的查詢以獲取我正在查找的確切結果。我不知道我哪裏錯了。
在此先感謝。
那是你的完整的查詢? –
我希望如此。我不確定是否需要在其中添加更多過濾條件或條款 – Mangoski