作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我遇到一个问题,我有两个文档,每个文档包含一个对象数组。我喜欢搜索一个文档,该文档包含一个嵌套对象的两个属性(在同一对象中同时匹配两个属性),但是我总是得到两个文档。
我用以下方法创建了文档:
POST /respondereval/_doc
{
"resp_id": "1236",
"responses": [
{"key": "meta","text":"abc"},
{"key": "property 1", "text": "yes"},
{"key": "property 2", "text": "yes"},
]
}
POST /respondereval/_doc
{
"resp_id": "1237",
"responses": [
{"key": "meta","text":"abc"},
{"key": "property 1", "text": "no"},
{"key": "property 2", "text": "yes"},
]
}
我为它们定义了一个索引,以防止ES扁平化对象,如下所示:
PUT /respondereval
{
"mappings" : {
"properties": {
"responses" : {
"type": "nested"
}
}
}
}
我现在想使用以下查询搜索第一个文档(
resp_id 1236
):
GET /respondereval/_search
{
"query": {
"nested": {
"path": "responses",
"query": {
"bool": {
"must": [
{ "match": { "responses.key": "property 1" } },
{ "match": { "responses.text": "yes" } }
]
}
}
}
}
}
这只能返回一个同时符合两个条件的元素。
resp_id 1236: "key":["gender", "property 1", "property 2"], "text:["abc", "yes", "yes"]
resp_id 1237: "key":["gender", "property 1", "property 2"], "text:["abc", "no", "yes"]
两者都包含
property1
和
yes
。
"key": "property 1" AND "text": "yes"
)匹配的元素的文档?
最佳答案
问题出在您的映射上。您具有默认情况下使用标准分析器的文本映射。
标准分析器在空格上创建 token 。所以property 1
将标记为
{
"tokens": [
{
"token": "property",
"start_offset": 0,
"end_offset": 8,
"type": "<ALPHANUM>",
"position": 0
},
{
"token": "1",
"start_offset": 9,
"end_offset": 10,
"type": "<NUM>",
"position": 1
}
]
}
同样,
property 2
也是如此。
yes
时,它与第二个文档中的第二个文本匹配。
property 1
与
property
分析的文档中第二个键的 token 匹配。
keyword
变体
{
"query": {
"nested": {
"path": "responses",
"query": {
"bool": {
"must": [
{ "match": { "responses.key.keyword": "property 1" } },
{ "match": { "responses.text.keyword": "yes" } }
]
}
}
}
}
}
这将是正确的:
{
"query": {
"nested": {
"path": "responses",
"query": {
"bool": {
"must": [
{ "match_phrase": { "responses.key": "property 1" } },//phrase queries
{ "match": { "responses.text": "yes" } }
]
}
}
}
}
}
关于elasticsearch - ElasticSearch数组数据与AND条件匹配嵌套元素中的多个属性,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/63234185/
我是一名优秀的程序员,十分优秀!