我正在使用弹性搜索 5.5.1。我的要求是在以下数据集上应用以下公式:(doc_count*100/10):
{
"took": 30,
"timed_out": false,
"_shards": {
"total": 5,
"successful": 5,
"failed": 0
},
"hits": {
"total": 13,
"max_score": 0,
"hits": []
},
"aggregations": {
"group_by_botId": {
"doc_count_error_upper_bound": 0,
"sum_other_doc_count": 0,
"buckets": [
{
"key": 1,
"doc_count": 9
},
{
"key": 3,
"doc_count": 4
}
]
}
}
}
我应该能够为每个存储桶项目找到解决方案。我不想使用 Java SDK 来解决这个问题,因为要求只使用弹性搜索 REST API。