我正在使用弹性搜索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。
答案 0 :(得分:2)
您可以使用bucket_script
聚合为每个存储桶运行脚本:
"aggs": {
"group_by_botId": {
"terms": {
"field": "botId"
},
"aggs": {
"count": {
"bucket_script": {
"buckets_path": {
"doc_count" : "_count"
},
"script": "params.doc_count * 100 / 10"
}
}
}
}
}