码迷,mamicode.com
首页 > 其他好文 > 详细

bucket_selector 中script执行结果

时间:2020-07-13 11:24:39      阅读:70      评论:0      收藏:0      [点我收藏+]

标签:eric   agg   float   pre   size   表达式   search   tor   bucket   

elasticsearch:

先随便贴一个查询数据:

GET /test/_search
{
  "size": 0,
  "aggs": {
    "find_missing_ids": {
      "histogram": {
        "field": "numeric_id",
        "interval": 1,
        "min_doc_count": 0
      },
      "aggs": {
        "max_bucket_selector": {
          "bucket_selector": {
            "buckets_path": {
              "count": "_count"
            },
            "script": {
              "inline": "count == 0"
            }
          }
        }
      }
    }
  }
}

需要注意的是,script字段中的表达式返回的结果只能是bool类型,int,float,double等其他类型会被转化成bool类型,所以通过
bucket_selector是不可能找到聚合后的最大值的

bucket_selector 中script执行结果

标签:eric   agg   float   pre   size   表达式   search   tor   bucket   

原文地址:https://www.cnblogs.com/lrbll/p/13291932.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!