(Elasticsearch v5)
数据模型有两种文档类型:父级和子级。
我发现我可以执行以下查询:
GET /stack/parent_doc/_search/
{
"query": {
"has_child": {
"type": "child_doc",
"inner_hits": {
"_source": false,
"size": 0
},
"query": {
"match_all": {}
}
}
}
}
我找回所有父母,其中至少有一个孩子和他们的子文件数,如下所示。这非常接近,但我也希望父母没有孩子。
{
"took": 4077,
"timed_out": false,
"_shards": {
"total": 20,
"successful": 20,
"failed": 0
},
"hits": {
"total": 4974405,
"max_score": 1,
"hits": [{
"_index": "stack",
"_type": "parent_doc",
"_id": "f34e4848-fd63-35a3-84d3-82cbc8796473",
"_score": 1,
"_source": {
"field": "value"
},
"inner_hits": {
"child_doc": {
"hits": {
"total": 1,
"max_score": 0,
"hits": []
}
}
}
},
{
"_index": "stack",
"_type": "parent_doc",
"_id": "f34e1ece-2274-35f6-af37-37138825db20",
"_score": 1,
"_source": {
"field": "value"
},
"inner_hits": {
"child_doc": {
"hits": {
"total": 5,
"max_score": 0,
"hits": []
}
}
}
}
]
}
}
如果我删除查询的match_all
部分,那么ES似乎完全忽略has_child
子句,返回所有父文档,无论他们是否有孩子(这是我想要的)但没有inner_hits
,所以我不算数。
"query": {
"match_all": {}
}
有没有办法在单个查询中执行此操作?
答案 0 :(得分:1)
你需要使用bool/should
包括你当前的查询以及另一个否定它的人:
POST /stack/_search/
{
"query": {
"bool": {
"should": [
{
"has_child": {
"type": "child_doc",
"inner_hits": {
"_source": false,
"size": 0
},
"query": {
"match_all": {}
}
}
},
{
"bool": {
"must_not": {
"has_child": {
"type": "child_doc",
"query": {
"match_all": {}
}
}
}
}
}
]
}
}
}
现在,您将获得所有父母,无论他们是否有孩子,还可以获得每位父母有多少孩子的信息。