IM是弹性搜索世界的新手。 我做了一个聚合并得到了结果。现在我需要查看每个类别/桶中的文档。怎么做?
答案 0 :(得分:1)
您只需添加top_hits
聚合作为terms
聚合的子聚合,如下所示:
{
"aggs": {
"categories": {
"terms": {
"field": "category"
},
"aggs": { <--- add this sub-aggregation
"top_category_hits": {
"top_hits": {}
}
}
}
}
}