累积汇总聚合(Cumulative Sum Aggregation)
Syntax(语法)
{
"cumulative_sum": {
"buckets_path": "the_sum"
}
}cumulative_sum参数
POST /sales/_search
{
"size": 0,
"aggs" : {
"sales_per_month" : {
"date_histogram" : {
"field" : "date",
"interval" : "month"
},
"aggs": {
"sales": {
"sum": {
"field": "price"
}
},
"cumulative_sales": {
"cumulative_sum": {
"buckets_path": "sales" #1
}
}
}
}
}
}Last updated