如何对弹性搜索聚合桶数据应用数学运算

时间:2017-09-05 12:27:48

标签: elasticsearch elasticsearch-painless

我正在使用弹性搜索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。

1 个答案:

答案 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"
          }
        }
      }
    }
  }