gpt4 book ai didi

elasticsearch - Elasticsearch按索引类型和字段搜索

转载 作者:行者123 更新时间:2023-12-03 02:03:14 25 4
gpt4 key购买 nike

我想搜索单个索引类型,然后通过匹配单个字段进一步过滤它。假设我有书籍,电影和玩具类型。现在,我想搜索惊悚类型的电影,我该怎么做?我有此代码无法正常工作并产生一些错误:

{
"from" : 0,
"size" : 10,
"query": {
"filtered" : {
"filter" : {
"type" : {
"value" : "movies"
},
"term" : {
"genre" : "Thriller"
}
}
}
},
"sort": [
{
"date_entered" : {
"order": "desc"
}
}
]
}

错误是这样的:
{"error":"SearchPhaseExecutionException[Failed to execute phase [query], all shards failed;

最佳答案

您的语法错误;您不能以这种方式指定两个过滤器。尝试使用 bool must filter

我设置了一个简单的索引,然后添加了三个不同类型但具有相同“类型”的文档:

PUT /test_index

POST /test_index/_bulk
{"index":{"_type":"books"}}
{"genre":"Thriller"}
{"index":{"_type":"movies"}}
{"genre":"Thriller"}
{"index":{"_type":"toys"}}
{"genre":"Thriller"}

然后运行此查询:
POST /test_index/_search
{
"from": 0,
"size": 10,
"query": {
"filtered": {
"query": {
"match_all": {}
},
"filter": {
"bool": {
"must": [
{
"type": {
"value": "movies"
}
},
{
"term": {
"genre": "thriller"
}
}
]
}
}
}
}
}

并返回正确的文档:
{
"took": 10,
"timed_out": false,
"_shards": {
"total": 1,
"successful": 1,
"failed": 0
},
"hits": {
"total": 1,
"max_score": 1,
"hits": [
{
"_index": "test_index",
"_type": "movies",
"_id": "uReb0g9KSLKS18sTATdr3A",
"_score": 1,
"_source": {
"genre": "Thriller"
}
}
]
}
}

注意,我必须在术语过滤器中使用小写的“惊悚片”。由于我未指定分析器,因此将使用 standard analyzer,它将文本“Thriller”转换为“惊悚”一词,因此,如果我要使用 term过滤器,则需要使用较低的案例版本。如果我改用 match query,则可以使用“Thriller”作为查询文本。

这是我用来测试的代码:

http://sense.qbox.io/gist/2f5dc5f15f0ecb50fb9772bbf4d52849031be41d

关于elasticsearch - Elasticsearch按索引类型和字段搜索,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29688783/

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