0
我想運行一個彈性查詢使用_count來計數。彈性搜索以獲得個人條款計數
{
"query": {
"bool": {
"must": [ {
"term": {
"A": "image"
}
},
{
"aggs" : {
"C" : {
"terms" : { "field" : "C" ,
"include" : ["X:969", "Y:96"]
}
}
}
}
]
}
}
}
現在我得到預期的輸出。
{
"count": 321,
"_shards": {
"total": 19,
"successful": 19,
"failed": 0
}
}
但反正是有得到的輸出喜歡
X:969 count 2
Y:96 count 319
基本上找個別情況,而不是即使當數組傳遞總數。
問候。
謝謝,我如何通過此陣「條款」:{「場」:「C」}我嘗試通過它在[],但失敗 – user2854333
請添加新的查詢作爲問題的一部分? – Mysterion
已更新查詢 – user2854333