ElasticSearch 5:搜索嵌套字段

时间:2018-02-06 20:41:30

标签: elasticsearch elasticsearch-5

我有以下文档,它已被索引到ElasticSearch 5.5

{
    "dept_id": "DP123",
    "related_depts": [
        {
            "id": "DP222",
            "roles": [
                {
                    "status": null,
                    "persons": [
                        {
                            "id": "P123",
                            "roles": [
                                {
                                    "status": null
                                }
                            ]
                        },

                        {
                            "id": "P124",
                            "roles": [
                                {
                                    "status": null
                                }
                            ]
                        }
                    ]
                }
            ]
        }
    ]
}

现在,我想搜索所有人员id = P123 的文档 我使用以下命令进行搜索。

curl -XPOST 'localhost:9200/_search?pretty' -H 'Content-Type: application/json' -d'
{
     "query": {
        "nested" : {
            "path" : "related_depts.roles.persons",
            "query" : {
                "match" : {
                    "id": "P123"
                }
            }
        }
    }
}
'

我得到了以下错误。

failed to find nested object under path [related_depts.roles.persons]

1 个答案:

答案 0 :(得分:-1)

所有对象都在数组内 因此,您需要搜索每个索引的第一个索引:

related_depts[0].roles[0].persons[0]

希望这有帮助!