OpenSearch/docs/reference/aggregations/bucket/nested-aggregation.asciidoc

68 lines
1.8 KiB
Plaintext
Raw Normal View History

[[search-aggregations-bucket-nested-aggregation]]
=== Nested Aggregation
A special single bucket aggregation that enables aggregating nested documents.
For example, lets say we have a index of products, and each product holds the list of resellers - each having its own
price for the product. The mapping could look like:
[source,js]
--------------------------------------------------
{
...
"product" : {
"properties" : {
"resellers" : { <1>
2014-11-27 05:03:19 -05:00
"type" : "nested",
"properties" : {
2016-03-18 12:01:27 -04:00
"name" : { "type" : "text" },
"price" : { "type" : "double" }
}
}
}
}
}
--------------------------------------------------
<1> The `resellers` is an array that holds nested documents under the `product` object.
The following aggregations will return the minimum price products can be purchased in:
[source,js]
--------------------------------------------------
{
"query" : {
"match" : { "name" : "led tv" }
},
"aggs" : {
"resellers" : {
"nested" : {
"path" : "resellers"
},
"aggs" : {
"min_price" : { "min" : { "field" : "resellers.price" } }
}
}
}
}
--------------------------------------------------
As you can see above, the nested aggregation requires the `path` of the nested documents within the top level documents.
Then one can define any type of aggregation over these nested documents.
Response:
[source,js]
--------------------------------------------------
{
"aggregations": {
"resellers": {
"min_price": {
"value" : 350
}
}
}
}
--------------------------------------------------