我正在尝试让通配符在弹性搜索中的多个字段上工作,但似乎不起作用。当我使用它时,它只会返回与提交空查询相同的结果。这是我的查询:
{
"sort": [
{
"_score": {
"order": "desc"
}
},
{
"ratingCount": {
"order": "desc"
}
},
{
"avgRating": {
"order": "desc"
}
}
],
"from": 20,
"size": 20,
"query": {
"bool": {
"filter": {
"term": {
"cities": "59c95a090338d4fe4aea6af8"
}
},
"should": [
{
"wildcard": {
"firstName": "Mich*"
}
},
{
"wildcard": {
"lastName": "Mich*"
}
}
]
}
}
}
答案 0 :(得分:1)
也许from
属性是您的问题?看一下From/Size documentation。从20开始意味着到第一个结果的偏移量是20。这意味着您至少需要总共21个结果才能在查询中看到一条记录。
看一个例子。首先放三个记录:
PUT index/_doc/1
{
"cities": "59c95a090338d4fe4aea6af8",
"firstName": "Michael",
"lastName": "Jordan"
}
PUT index/_doc/2
{
"cities": "59c95a090338d4fe4aea6af8",
"firstName": "Tomasz",
"lastName": "Michalowicz"
}
PUT index/_doc/3
{
"cities": "59c95a090338d4fe4aea6af8",
"firstName": "Bartosz",
"lastName": "Michalski"
}
然后使用您的查询进行搜索,并将from
设置为3:
GET _search
{
"from": 3,
"query": {
"bool": {
"filter": {
"term": {
"cities": "59c95a090338d4fe4aea6af8"
}
},
"should": [
{
"wildcard": {
"firstName": "Mich*"
}
},
{
"wildcard": {
"lastName": "Mich*"
}
}
]
}
}
}
响应将是:
{
"took": 15,
"timed_out": false,
"_shards": {
"total": 10,
"successful": 10,
"skipped": 0,
"failed": 0
},
"hits": {
"total": 3,
"max_score": 0,
"hits": []
}
}
您可以看到没有可见的hits
,但total
等于3。
然后将from
更改为2,然后再次查询:
GET _search
{
"from": 2,
"query": {
"bool": {
"filter": {
"term": {
"cities": "59c95a090338d4fe4aea6af8"
}
},
"should": [
{
"wildcard": {
"firstName": "Mich*"
}
},
{
"wildcard": {
"lastName": "Mich*"
}
}
]
}
}
}
答案是:
{
"took": 13,
"timed_out": false,
"_shards": {
"total": 10,
"successful": 10,
"skipped": 0,
"failed": 0
},
"hits": {
"total": 3,
"max_score": 0,
"hits": [
{
"_index": "twitter",
"_type": "_doc",
"_id": "3",
"_score": 0,
"_source": {
"cities": "59c95a090338d4fe4aea6af8",
"firstName": "Bartosz",
"lastName": "Michalski"
}
}
]
}
}
然后将from
更改为0,然后再次查询:
GET _search
{
"from": 0,
"query": {
"bool": {
"filter": {
"term": {
"cities": "59c95a090338d4fe4aea6af8"
}
},
"should": [
{
"wildcard": {
"firstName": "Mich*"
}
},
{
"wildcard": {
"lastName": "Mich*"
}
}
]
}
}
}
响应:
{
"took": 8,
"timed_out": false,
"_shards": {
"total": 10,
"successful": 10,
"skipped": 0,
"failed": 0
},
"hits": {
"total": 3,
"max_score": 0,
"hits": [
{
"_index": "twitter",
"_type": "_doc",
"_id": "2",
"_score": 0,
"_source": {
"cities": "59c95a090338d4fe4aea6af8",
"firstName": "Tomasz",
"lastName": "Michalowicz"
}
},
{
"_index": "twitter",
"_type": "_doc",
"_id": "1",
"_score": 0,
"_source": {
"cities": "59c95a090338d4fe4aea6af8",
"firstName": "Michael",
"lastName": "Jordan"
}
},
{
"_index": "twitter",
"_type": "_doc",
"_id": "3",
"_score": 0,
"_source": {
"cities": "59c95a090338d4fe4aea6af8",
"firstName": "Bartosz",
"lastName": "Michalski"
}
}
]
}
}