2

我有一个看起来像这样的索引:

{
    "mappings":{
        "authors":{
            "properties":{
                "books":{
                    "type":"nested",
                    "properties":{
                        "title":{"type":"string"},
                        "firstSentence":{"type":"string"},
                        "isbn":{"type":"string"},
                        "publishDate":{"type":"date"},
                    }
                },
                "firstName":{"type":"string"},
                "lastName":{"type":"string"}, 
                "birthday":{"type":"date"},
                }
           }
}

我正在通过 Java 客户端查询此索引。对于这个查询,我不关心作者;我只想拿回书。例如,我想查找标题和第一句话中包含“Hello”一词的所有书籍。

目前,我使用返回作者列表的嵌套查询,然后我手动解析该列表以获取书籍。有没有办法让 Elasticsearch 直接返回书籍列表?我正在使用 Elasticsearch 1.5.2 版和 Jest 0.1.6

4

1 回答 1

2

不,结果是您注入的文档。您可以使用源过滤来限制返回的文档的字段,这样您就只能取回嵌套的文档。但这些将始终在嵌套父级的范围内。因此,如果您发现两位作者各有几本书,您会得到两个结果,其中包含嵌套文档。

https://www.elastic.co/guide/en/elasticsearch/reference/current/search-request-source-filtering.html#search-request-source-filtering

于 2016-07-16T08:36:57.473 回答