gpt4 book ai didi

elasticsearch - 从elasticsearch中的索引中仅获取过滤后的嵌套对象

转载 作者:行者123 更新时间:2023-12-02 02:33:47 24 4
gpt4 key购买 nike

我有一个包含嵌套对象的文档,如下所示:

{
"title" : "Title 1",
"books": [{
"book_title": "b title 1",
"year": 2014
}, {
"book_title": "b title 2",
"year": 2015
}]
}

现在我需要按标题(不是 book_title)和年份(假设是 2014 年)过滤书籍。我需要的输出是:

{
"title" : "Title 1",
"books": [{
"book_title": "b title 1",
"year": 2014
}]
}

当我使用嵌套过滤器时,我会获取所有嵌套对象,即使它们不匹配。如何仅获取匹配的嵌套对象?

最佳答案

您需要使用nested inner_hits功能如下。

{
"_source": [
"title"
],
"query": {
"bool": {
"must": [
{
"match": {
"title": "title 1"
}
},
{
"nested": {
"path": "books",
"query": {
"term": {
"books.year": 2014
}
},
"inner_hits": {}
}
}
]
}
}
}

在输出中,您将得到您所期望的内容,即 title 字段和嵌套 books 数组中的匹配书籍。

关于elasticsearch - 从elasticsearch中的索引中仅获取过滤后的嵌套对象,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32773542/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com