桶脚本聚合编辑

一个父管道聚合,它执行一个脚本,该脚本可以在父多桶聚合中对指定的指标执行每个桶的计算。指定的指标必须是数字,并且脚本必须返回一个数字值。

语法编辑

一个 bucket_script 聚合在孤立状态下看起来像这样

{
  "bucket_script": {
    "buckets_path": {
      "my_var1": "the_sum",                     
      "my_var2": "the_value_count"
    },
    "script": "params.my_var1 / params.my_var2"
  }
}

这里,my_var1 是此桶路径在脚本中使用的变量的名称,the_sum 是要用于该变量的指标的路径。

表 54. bucket_script 参数

参数名称 描述 必需 默认值

script

要为该聚合运行的脚本。脚本可以是内联的、文件的或索引的。(有关更多详细信息,请参阅 脚本

必需

buckets_path

一个脚本变量及其关联路径到我们希望用于变量的桶的映射(有关更多详细信息,请参阅 buckets_path 语法

必需

gap_policy

在数据中发现间隙时要应用的策略(有关更多详细信息,请参阅 处理数据中的间隙

可选

跳过

格式

DecimalFormat 模式 用于输出值。如果指定,则格式化的值将返回在聚合的 value_as_string 属性中

可选

以下代码段计算每个月 T 恤销售额与总销售额的比率百分比

response = client.search(
  index: 'sales',
  body: {
    size: 0,
    aggregations: {
      sales_per_month: {
        date_histogram: {
          field: 'date',
          calendar_interval: 'month'
        },
        aggregations: {
          total_sales: {
            sum: {
              field: 'price'
            }
          },
          "t-shirts": {
            filter: {
              term: {
                type: 't-shirt'
              }
            },
            aggregations: {
              sales: {
                sum: {
                  field: 'price'
                }
              }
            }
          },
          "t-shirt-percentage": {
            bucket_script: {
              buckets_path: {
                "tShirtSales": 't-shirts>sales',
                "totalSales": 'total_sales'
              },
              script: 'params.tShirtSales / params.totalSales * 100'
            }
          }
        }
      }
    }
  }
)
puts response
POST /sales/_search
{
  "size": 0,
  "aggs": {
    "sales_per_month": {
      "date_histogram": {
        "field": "date",
        "calendar_interval": "month"
      },
      "aggs": {
        "total_sales": {
          "sum": {
            "field": "price"
          }
        },
        "t-shirts": {
          "filter": {
            "term": {
              "type": "t-shirt"
            }
          },
          "aggs": {
            "sales": {
              "sum": {
                "field": "price"
              }
            }
          }
        },
        "t-shirt-percentage": {
          "bucket_script": {
            "buckets_path": {
              "tShirtSales": "t-shirts>sales",
              "totalSales": "total_sales"
            },
            "script": "params.tShirtSales / params.totalSales * 100"
          }
        }
      }
    }
  }
}

以下可能是响应

{
   "took": 11,
   "timed_out": false,
   "_shards": ...,
   "hits": ...,
   "aggregations": {
      "sales_per_month": {
         "buckets": [
            {
               "key_as_string": "2015/01/01 00:00:00",
               "key": 1420070400000,
               "doc_count": 3,
               "total_sales": {
                   "value": 550.0
               },
               "t-shirts": {
                   "doc_count": 1,
                   "sales": {
                       "value": 200.0
                   }
               },
               "t-shirt-percentage": {
                   "value": 36.36363636363637
               }
            },
            {
               "key_as_string": "2015/02/01 00:00:00",
               "key": 1422748800000,
               "doc_count": 2,
               "total_sales": {
                   "value": 60.0
               },
               "t-shirts": {
                   "doc_count": 1,
                   "sales": {
                       "value": 10.0
                   }
               },
               "t-shirt-percentage": {
                   "value": 16.666666666666664
               }
            },
            {
               "key_as_string": "2015/03/01 00:00:00",
               "key": 1425168000000,
               "doc_count": 2,
               "total_sales": {
                   "value": 375.0
               },
               "t-shirts": {
                   "doc_count": 1,
                   "sales": {
                       "value": 175.0
                   }
               },
               "t-shirt-percentage": {
                   "value": 46.666666666666664
               }
            }
         ]
      }
   }
}