2

我必须建立一个价格比较系统。我的想法是使用 Elasticsearch 来构建。现在我有这个问题。如何汇总每个产品的卖家价格。

作为示例,请参阅此屏幕截图: 在此处输入图像描述

让我说我有这个简单的映射:

products: {
    product: {
        properties: {
            id: {
                type: "long"
            },
            name: {
                type: "string"
            },
            ....
            sellers: {
                dynamic: "true",
                properties: {
                    sellerId: {
                        type: "long"
                    },
                    price: {
                        type: "float"
                    }
                }
            }
        }
    }
}

我可以汇总或分面每个产品的价格(最低、最高和卖家数)吗?

或者有没有办法用父子关系来构建这个东西?

4

1 回答 1

1

假设您使用的是 1.0 而不是 0.90,那么您可以使用minmaxvalue_count聚合很容易地做到这一点。

{
  "query": {
    "match": {
      "name": "item1"
    }
  }, 
  "aggs": {
    "Min": {
      "min": {
        "field": "sellers.price"
      }
    },
    "Max": {
      "max": {
        "field": "sellers.price"
      }
    },
    "SellerCount": {
      "value_count": {
        "field": "sellers.sellerId"
      }
    }
  }
}

或者,您可以使用子聚合来返回每个产品的信息,而不是特定产品。

{
  "aggs": {
    "Products": {
      "terms": {
        "field": "name",
        "size": 10
      },
      "aggs": {
        "Min": {
          "min": {
            "field": "sellers.price"
          }
        },
        "Max": {
          "max": {
            "field": "sellers.price"
          }
        },
        "SellerCount": {
          "value_count": {
            "field": "sellers.sellerId"
          }
        }
      }
    }
  }
}
于 2014-03-28T19:26:26.917 回答