让孙子索引多个分片

时间:2018-12-14 10:30:43

标签: elasticsearch

在映射祖父母->父母->孩子时,我具有以下关系。

当前,查询有效,但是如果分片的数量从1增加到5(从1开始),则下面的查询不会返回所有结果。

{
"query": {
    "has_child": {
      "type": "parent",
      "query": {
        "has_child": {
          "type": "children",
          "query": {
            "match_all": {}
          }
        }
      }
    }
  }
}

原因可能与路由相关吗?

谢谢

0 个答案:

没有答案