Elastic Search(5.0)筛选器上下文项查询不起作用



我有一个过滤器查询,如下所示。我打算过滤剥离的阻止uri(完全匹配(,这是不工作的,

{
"query": {
"bool": {
"filter": [
{
"term": {
"stripped-blocked-uri": "https://www.twitter.com:9090"
}
},
{
"term": {
"project-id": "1"
}
},
{
"term": {
"rule-id": "101"
}
}
]
}
}
}

它没有返回任何命中。

我的地图是

"stripped-blocked-uri": {
"type": "text",
"fields": {
"keyword": {
"type": "keyword",
"ignore_above": 256
}
}
},

不确定这里出了什么问题。请帮忙!

使用keyword字段:

{
"query": {
"bool": {
"filter": [
{
"term": {
"stripped-blocked-uri.keyword": "https://www.twitter.com:9090"
}
},
{
"term": {
"project-id": "1"
}
},
{
"term": {
"rule-id": "101"
}
}
]
}
}
}

相关内容

  • 没有找到相关文章

最新更新