在索引中考虑2个文档,如下所示:
{
"_index": "32",
"_type": "places",
"_id": "_FqlAzzSRN6Ge_294D5Mwg",
"_score": 1,
"_source": {
"name_3": "xxxx",
"id_3": "xxxxx",
"name_2": "xxxx",
"id_2": "xxx",
"name_1": "xxx",
"id_1": "xxx",
"tempid": "xxxxx",
"field1": 316.6666666666667,
"type": "processeddata"
}
},
{
"_index": "32",
"_type": "places",
"_id": "3RCO-zHeSr2nWFZd8W-MDg",
"_score": 1,
"_source": {
"name_3": "yyyy",
"id_3": "yyy",
"name_2": "yyy",
"id_2": "yyy",
"name_1": "yyyy",
"id_1": "yyy",
"tempid": "yy",
"field2": 400.6666666666667,
"type": "processeddata"
}
}
我想为以下场景构建一个查询。我必须找到特定范围内的字段文件。
FIELD1:200-400 field2:300-400所以上面的两个文件应该来了。
我的查询如下:
"query": {
"bool": {
"must": [
{
"range": {
"field1": {
"gte": 200,
"lte": 400
}
},"range": {
"field2": {
"gte": 300,
"lte": 400
}
}
}
]
}
}
但是上面的查询"在单个文档中查找2个字段,因此没有结果。因此,我必须进行搜索是否有任何文件满足文档中的范围应该返回。请分享您的想法。提前谢谢。
答案 0 :(得分:0)
您需要使用bool should
而不是bool must
。这意味着匹配任何匹配至少一个条件的文档。
注意:您的第二个条件与第二个文档不匹配,因为400.66不在[300, 400]
范围内。