4

我正在尝试使用 ElasticSearch。我在查询嵌套对象时遇到问题。

我的映射:

curl -X GET http://localhost:9200/testt/resource/_mapping?pretty

{
    "resource": {
        "properties": {
            "bib": {
                "type": "nested",
                "properties": {
                    "IssueDate": {
                        "type": "date",
                        "format": "dateOptionalTime"
                    },
                    "Title": {
                        "type": "string"
                    }
                }
            },
            "name": {
                "type": "string"
            }
        }
    }
}

我有一个索引资源:

curl -X GET http://localhost:9200/testt/resource/_search?pretty

{
    "took": 1,
    "timed_out": false,
    "_shards": {
        "total": 5,
        "successful": 5,
        "failed": 0
    },
    "hits": {
        "total": 1,
        "max_score": 1.0,
        "hits": [
            {
                "_index": "testt",
                "_type": "resource",
                "_id": "1234",
                "_score": 1.0,
                "_source": {
                    "name": "SSS",
                    "bib": {
                        "Title": "XSD",
                        "IssueDate": "2012-12-19"
                    }
                }
            }
        ]
    }
}

curl -X GET http://localhost:9200/testt/resource/1234?pretty

{
    "_index": "testt",
    "_type": "resource",
    "_id": "1234",
    "_version": 1,
    "exists": true,
    "_source": {
        "name": "SSS",
        "bib": {
            "Title": "XSD",
            "IssueDate": "2012-12-19"
        }
    }
}

但是我无法使用查询请求找到它:

{
    "query": {
        "nested": {
            "path": "bib",
            "query": {
                "query_string": {
                    "query": "XSD"
                }
            }
        }
    }
}

搜索:curl -X GET http://localhost:9200/testt/resource/_search?pretty -d '{ "query" : { "nested" : {"path" : "bib", "query" : { "query_string" : {"query" : "XSD"} } } } }'

{
    "took" : 1,
    "timed_out" : false,
    "_shards" : {
        "total" : 5,
        "successful" : 5,
        "failed" : 0
    },
    "hits" : {
        "total" : 0,
        "max_score" : null,
        "hits" : [ ]
    }
}

我的问题是:如何使用嵌套查询来查找我的对象?我对具有bib包含 word的嵌套对象的对象感兴趣XSD。对象1234显然包含XSD,但我找不到它。你能告诉我我的查询是否正常吗?它出什么问题了?

4

2 回答 2

3

query_string不支持它,但是如果您可以自己解析查询,则可以使用查询multi_match并执行以下操作:

{
    "query": {
        "nested": {
            "path": "bib",
            "query": {
                "multi_match": {
                    "query": "XSD",
                    "fields": ["bib.*"]
                }
            }
        }
    }
}

此解决方案的一个可能问题是,如果嵌套文档中有任何数字字段,则需要将它们从字段列表中排除。可以通过为字段名称添加前缀来实现。例如,您可以将所有字符串字段重命名为以 开头s_,在这种情况下,您可以使用 选择所有字符串字段"fields": ["bib.s_*"]

另一种可能的解决方案是使用父_all字段。您可以从 中排除所有父字段,_all_all专门用于嵌套字段。_all默认情况下,所有嵌套字段都包含在父字段中。

于 2012-12-03T15:00:02.223 回答
2

您需要在query_string 查询中指定默认字段:

curl -XGET localhost:9200/testt/resource/_search -d '{ 
    "query": {
        "nested" : {
            "path" : "bib",
            "score_mode" : "avg",
            "query" : {
                "query_string" : {
                    "fields" : ["Title"],
                    "query" : "XSD"
                }
            }
        }
    }
}';
于 2012-11-30T15:54:00.227 回答