在弹性搜索中,我有亲子关系。孩子们可以有5种不同的doc类型,但都有几个共同的领域。我正在寻找一种方法来搜索父文档,然后在一个查询中聚合来自每个子文档类型的子文档。目前这将需要5个查询。
答案 0 :(得分:0)
您可以查询父文档,然后使用以下单个查询聚合来自每个子文档类型的子文档:
POST /index_name/_search --> leave the type_name blank
{
"size": 0,
"query": {
"has_parent": {
"type": "parentType", --> parent doc type
"query": {
"match_all": {} --> search criteria for parent
}
}
},
"aggs": {
"agg_by_type": {
"terms": {
"size": 0,
"field": "_type" --> aggregate by child doc type
},
"aggs": {
"agg_by_field": {
"terms": {
"field": "fieldName" --> aggregate by required field
}
}
}
}
}
}