165 lines
4.1 KiB
Plaintext
165 lines
4.1 KiB
Plaintext
[[search-aggregations-metrics-sum-aggregation]]
|
|
=== Sum Aggregation
|
|
|
|
A `single-value` metrics aggregation that sums up numeric values that are extracted from the aggregated documents. These values can be extracted either from specific numeric fields in the documents, or be generated by a provided script.
|
|
|
|
Assuming the data consists of documents representing sales records we can sum
|
|
the sale price of all hats with:
|
|
|
|
[source,js]
|
|
--------------------------------------------------
|
|
POST /sales/_search?size=0
|
|
{
|
|
"query" : {
|
|
"constant_score" : {
|
|
"filter" : {
|
|
"match" : { "type" : "hat" }
|
|
}
|
|
}
|
|
},
|
|
"aggs" : {
|
|
"hat_prices" : { "sum" : { "field" : "price" } }
|
|
}
|
|
}
|
|
--------------------------------------------------
|
|
// CONSOLE
|
|
// TEST[setup:sales]
|
|
|
|
Resulting in:
|
|
|
|
[source,js]
|
|
--------------------------------------------------
|
|
{
|
|
...
|
|
"aggregations": {
|
|
"hat_prices": {
|
|
"value": 450.0
|
|
}
|
|
}
|
|
}
|
|
--------------------------------------------------
|
|
// TESTRESPONSE[s/\.\.\./"took": $body.took,"timed_out": false,"_shards": $body._shards,"hits": $body.hits,/]
|
|
|
|
The name of the aggregation (`intraday_return` above) also serves as the key by which the aggregation result can be retrieved from the returned response.
|
|
|
|
==== Script
|
|
|
|
We could also use a script to fetch the sales price:
|
|
|
|
[source,js]
|
|
--------------------------------------------------
|
|
POST /sales/_search?size=0
|
|
{
|
|
"query" : {
|
|
"constant_score" : {
|
|
"filter" : {
|
|
"match" : { "type" : "hat" }
|
|
}
|
|
}
|
|
},
|
|
"aggs" : {
|
|
"hat_prices" : {
|
|
"sum" : {
|
|
"script" : {
|
|
"inline": "doc.price.value"
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
--------------------------------------------------
|
|
// CONSOLE
|
|
// TEST[setup:sales]
|
|
|
|
This will interpret the `script` parameter as an `inline` script with the `painless` script language and no script parameters. To use a stored script use the following syntax:
|
|
|
|
[source,js]
|
|
--------------------------------------------------
|
|
POST /sales/_search?size=0
|
|
{
|
|
"query" : {
|
|
"constant_score" : {
|
|
"filter" : {
|
|
"match" : { "type" : "hat" }
|
|
}
|
|
}
|
|
},
|
|
"aggs" : {
|
|
"hat_prices" : {
|
|
"sum" : {
|
|
"script" : {
|
|
"stored": "my_script",
|
|
"params" : {
|
|
"field" : "price"
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
--------------------------------------------------
|
|
// CONSOLE
|
|
// TEST[setup:sales,stored_example_script]
|
|
|
|
===== Value Script
|
|
|
|
It is also possible to access the field value from the script using `_value`.
|
|
For example, this will sum the square of the prices for all hats:
|
|
|
|
[source,js]
|
|
--------------------------------------------------
|
|
POST /sales/_search?size=0
|
|
{
|
|
"query" : {
|
|
"constant_score" : {
|
|
"filter" : {
|
|
"match" : { "type" : "hat" }
|
|
}
|
|
}
|
|
},
|
|
"aggs" : {
|
|
"square_hats" : {
|
|
"sum" : {
|
|
"field" : "price",
|
|
"script" : {
|
|
"inline": "_value * _value"
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
--------------------------------------------------
|
|
// CONSOLE
|
|
// TEST[setup:sales]
|
|
|
|
==== Missing value
|
|
|
|
The `missing` parameter defines how documents that are missing a value should
|
|
be treated. By default documents missing the value will be ignored but it is
|
|
also possible to treat them as if they had a value. For example, this treats
|
|
all hat sales without a price as being `100`.
|
|
|
|
[source,js]
|
|
--------------------------------------------------
|
|
POST /sales/_search?size=0
|
|
{
|
|
"query" : {
|
|
"constant_score" : {
|
|
"filter" : {
|
|
"match" : { "type" : "hat" }
|
|
}
|
|
}
|
|
},
|
|
"aggs" : {
|
|
"hat_prices" : {
|
|
"sum" : {
|
|
"field" : "price",
|
|
"missing": 100 <1>
|
|
}
|
|
}
|
|
}
|
|
}
|
|
--------------------------------------------------
|
|
// CONSOLE
|
|
// TEST[setup:sales]
|