Skip to content

Latest commit

 

History

History
38 lines (36 loc) · 1.22 KB

60_Children_agg.asciidoc

File metadata and controls

38 lines (36 loc) · 1.22 KB

子文档聚合

在父-子文档中支持 子文档聚合,这一点和 [nested-aggregation] 类似。但是,对于父文档的聚合查询是不支持的(和 reverse_nested 类似)。

我们通过下面的例子来演示按照国家维度查看最受雇员欢迎的业余爱好:

GET /company/branch/_search
{
  "size" : 0,
  "aggs": {
    "country": {
      "terms": { (1)
        "field": "country"
      },
      "aggs": {
        "employees": {
          "children": { (2)
            "type": "employee"
          },
          "aggs": {
            "hobby": {
              "terms": { (3)
                "field": "hobby"
              }
            }
          }
        }
      }
    }
  }
}
  1. countrybranch 文档的一个字段。

  2. 子文档聚合查询通过 employee type 的子文档将其父文档聚合在一起。

  3. hobbyemployee 子文档的一个字段。