ElasticSearch将嵌套字段聚合为父文档的一部分

时间:2015-10-09 14:20:28

标签: elasticsearch aggregation

我有Product个实体和嵌套Variation实体的索引。 Product实体由IdTitle和嵌套变体组成。 Variation实体由ColorSizePrice字段组成。我需要按ColorSizePrice字段汇总搜索结果,以获取每种颜色,尺寸和价格组的产品数量。如果我对这些字段使用嵌套聚合,则会获得正确的buckes,但桶中的文档数量是每个桶中Variation个实体的数量。但我需要获得每个桶Product个实体(根文档)的数量。

例如,第一个产品有变化(红色,小,10美元),(绿色,小,10美元),(红色,中等,11美元),第二个产品有变化(绿色,中等,15美元)。嵌套聚合为red返回2,为small返回2,因为2个变体的大小为red颜色和small。但是我需要每个桶的产品数量(根实体),red应为1,small为1。

由于其他要求,我也不能使用子文档而不是嵌套文档。

如何撰写查询以获得此结果?

以下是映射:

{
  "product": {
    "properties": {
      "id": {
        "type": "long"
      },
      "title": {
        "type": "string"
      },
      "brand": {
        "type": "string"
      },
      "variations": {
        "type": "nested",
        "properties": {
          "id": {
            "type": "long"
          },
          "colour": {
            "type": "string"
          },
          "size": {
            "type": "string"
          },
          "price": {
            "type": "double"
          }
        }
      },
      "location": {
        "type": "geo_point"
      }
    }
  }
}

这是一个查询

{
  "aggs": {
    "Variations": {
      "nested": {
        "path": "variations"
      },
      "aggs": {
        "Colous": {
          "terms": {
            "field": "variations.colour"
          }
        },
        "Sizes": {
          "terms": {
            "field": "variations.size"
          }
        }
      }
    },
    "Brands": {
      "terms": {
        "field": "brand"
      }
    }
  },
  "query": {
    "match_all": {}
  }
}

Brand聚合效果很好,因为它获得了每个组的根文档数,但嵌套聚合返回嵌套文档的数量而不是根文档的数量。

1 个答案:

答案 0 :(得分:6)

你以正确的方式解决了这个问题。现在,您只需使用reverse_nested aggregation即可加入"加入"对于根产品,并为每个产品获取匹配产品的数量。

{
  "aggs": {
    "Variations": {
      "nested": {
        "path": "variations"
      },
      "aggs": {
        "Colous": {
          "terms": {
            "field": "variations.colour"
          },
          "aggs": {
            "product_count": {            <--- add this reverse nested agg
              "reverse_nested": {}
            }
          }
        },
        "Sizes": {
          "terms": {
            "field": "variations.size"
          },
          "aggs": {
            "product_count": {            <--- add this reverse nested agg
              "reverse_nested": {}
            }
          }
        }
      }
    },
    "Brands": {
      "terms": {
        "field": "brand"
      }
    }
  },
  "query": {
    "match_all": {}
  }
}

在回复中,您会看到:

  • 2个产品匹配colour: green
  • 1个产品符合colour: red
  • 2个产品匹配size: medium
  • 1个产品符合size: small