我正在尝试在弹性搜索中执行存储桶聚合,该聚合仅针对从查询返回的结果运行。
似乎聚合在每次点击时都会运行,但只返回它的一部分。哪个没问题,但问题是从聚合返回的文档与查询返回的文档不匹配。
以下是映射:
LOCATION_MAPPING = {
id: { type: 'long' },
name: { type: 'text' },
street: { type: 'text' },
city: { type: 'text' },
state: { type: 'text' },
zip: { type: 'text' },
price: { type: 'text' },
geolocation: { type: 'geo_point' },
amenities: { type: 'nested' },
reviews: { type: 'nested' },
};
以下是查询:
{
"sort": [
{
"_score": {
"order": "desc"
}
}
],
"query": {
"bool": {
"filter": {
"geo_distance": {
"distance": "1000yd",
"geolocation": [
-73.990768410025,
40.713144830193
]
}
},
"must": {
"multi_match": {
"query": "new york",
"fields": [
"name^2",
"city",
"state",
"zip"
],
"type": "best_fields"
}
}
}
},
"aggs": {
"reviews": {
"nested": {
"path": "reviews"
},
"aggs": {
"location": {
"terms": {
"field": "reviews.locationId"
},
"aggs": {
"avg_rating": {
"avg": {
"field": "reviews.rating"
}
}
}
}
}
}
}
}
答案 0 :(得分:0)
以下资源应有助于了解您所观察到的行为以及您的问题:
似乎聚合在每次点击时都会运行,但只返回它的一部分。
是的,默认情况下,您拥有的术语聚合仅返回前10个存储桶,您可以使用size参数更新它(大小为0将返回所有存储桶)。请参阅Show all Elasticsearch aggregation buckets,相关帖子。
问题是从聚合返回的文档与从查询返回的文档不匹配。
在Elasticsearch响应中,您应该看到前10个评分结果(同样在查询的根级别有一个大小参数,默认为10 - 请参阅Elasticsearch From/Size Doc)以及您的聚合的前10个存储桶。最高得分的结果可能没有最常见的review.locationId
。
我认为你的选择是: