嵌套对象的Elasticsearch聚合

时间:2019-11-13 17:28:10

标签: elasticsearch aggregation

我正在尝试针对电子商务应用构建带有方面过滤的产品搜索。对于产品品牌,我具有以下结构:

"brand": {
    "type": "nested",
    "properties": {
        "name": {
            "type": "text"
        },
        "id": {
            "type": "integer"
        }
    }
}

我想按品牌ID进行汇总,然后返回整个对象和文档数。像这样:

"brands" : {
    "doc_count_error_upper_bound" : 0,
    "sum_other_doc_count" : 0,
    "buckets" : [
    {
        "key" : {
            "name": "Apple",
            "id": 1
        },
        "doc_count" : 34
    },
    {
        "key" : {
            "name": "Samsung",
            "id": 2
        },
        "doc_count" : 23
    }
    ]
}

目前,我正在这样编写汇总:

"aggs": {
    "brands": {
        "nested": {
            "path": "brand"
        }, 
        "aggs": {
            "brandIds": {
                "terms": {
                "field": "brand.id"
                }
            }
        }
    },
}

结果看起来像这样:

"aggregations" : {
    "brands" : {
        "doc_count" : 15,
        "brandIds" : {
            "doc_count_error_upper_bound" : 0,
            "sum_other_doc_count" : 0,
            "buckets" : [
                {
                    "key" : 1,
                    "doc_count" : 4
                },
                {
                    "key" : 2,
                    "doc_count" : 2
                }
            ]
        }
    }
}

1 个答案:

答案 0 :(得分:2)

您可以在Term Aggregation中使用Terms Aggregation,如下所示:

GET {index_name}/_search
{
  "size": 0,
  "query": {
   "match_all": {}
  }, 
  "aggs": {
    "brands": {
      "nested": {
        "path": "brand"
      },
      "aggs": {
        "brandIds": {
          "terms": {
            "field": "brand.id"
          }, 
          "aggs": {
            "by name": {
              "terms": {
                "field": "brand.name.keyword",
                "size": 10
              }
            }
          }
        }
      }
    }
  }
}

这将导致如下结果:

"aggregations": {
    "brands": {
      "doc_count": 68,
      "brandIds": {
        "doc_count_error_upper_bound": 0,
        "sum_other_doc_count": 0,
        "buckets": [
          {
            "key": 1,
            "doc_count": 46,
            "by name": {
              "doc_count_error_upper_bound": 0,
              "sum_other_doc_count": 0,
              "buckets": [
                {
                  "key": "Apple",
                  "doc_count": 46
                }
              ]
            }
          },
          {
            "key": 2,
            "doc_count": 22,
            "ny id": {
              "doc_count_error_upper_bound": 0,
              "sum_other_doc_count": 0,
              "buckets": [
                {
                  "key": "Samsung",
                  "doc_count": 22
                }
              ]
            }
          }
        ]
      }
    }
  }

希望这会有所帮助!

相关问题