我正在使用elastic4s来索引和搜索ES中的数据。我正在存储的文档的一部分包含我需要搜索的url字段(整个url)。当我搜索包含url字段的文档并获得0结果时,会出现问题。
为了进行此搜索,我在将数据插入索引之前定义了一个映射:
client.execute {
create index <my_index> mappings {
<my_type> as {
"url" typed StringType analyzer NotAnalyzed
}
}
}
我正在插入数据:
client.execute { index into <my_index> -> <my_type> fields (
"url" -> "http://sample.com"
)
}.await
我搜索文件:
val filter =
"""
|{
| "filtered" : {
| "query" : {
| "match_all" : {}
| },
| "filter" : {
| "bool" : {
| "should" : [
| { "bool" : {
| "must" : [
| { "term" : { "url" : "http://sample.com" } }
| ]
| } }
| ]
| }
| }
| }
|}
""".stripMargin
client.execute { search in <my_index> -> <my_type> rawQuery { filter } }.await
执行此查询后,我得到0结果。我做错了什么?
谢谢!
答案 0 :(得分:1)
问题解决了。
在映射中,而不是:
client.execute {
create index <my_index> mappings {
<my_type> as {
"url" typed StringType analyzer NotAnalyzed
}
}
}
我应该做的:
client.execute {
create index <my_index> mappings {
<my_type> as {
"url" typed StringType index "not_analyzed"
}
}
}
或
client.execute {
create index <my_index> mappings {
<my_type> as {
"url" typed StringType index NotAnalyzed
}
}
}
答案 1 :(得分:0)
我认为您的查询可以简化一些,例如:
{
"query": {
"term": {
"url": {
"value": "http://example.com"
}
}
}
}
奇怪的是,由于布尔查询的嵌套,我希望您的查询返回所有文档。 should
表示与数组中任何查询匹配的文档的得分高于不匹配的文档。因此,仅包含一个should
的{{1}}应返回所有文档,匹配文档的得分高于非匹配。