gpt4 book ai didi

elasticsearch - 如何对 Elasticsearch 聚合存储桶数据应用数学运算

转载 作者:行者123 更新时间:2023-12-02 22:48:56 27 4
gpt4 key购买 nike

我正在使用 flex 搜索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来解决此问题,因为要求仅使用 flex 搜索REST API。

最佳答案

您可以使用 bucket_script 聚合来为每个存储桶运行脚本:

  "aggs": {
"group_by_botId": {
"terms": {
"field": "botId"
},
"aggs": {
"count": {
"bucket_script": {
"buckets_path": {
"doc_count" : "_count"
},
"script": "params.doc_count * 100 / 10"
}
}
}
}
}

关于elasticsearch - 如何对 Elasticsearch 聚合存储桶数据应用数学运算,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46054997/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com