gpt4 book ai didi

elasticsearch - 如何在Elasticsearch中突出显示日期字段?

转载 作者:行者123 更新时间:2023-12-02 22:24:40 24 4
gpt4 key购买 nike

我的映射:

"mappings": {
"my_type": {
"properties": {
"birthDate": {
"type": "date",
"format": "dateOptionalTime"
},
"name": {
"type": "string"
}
}
}
}

我的搜索查询:
GET my_index/_search
{
"query": {
"bool": {
"should": [
{
"match": {
"name": "babken"
}
},
{
"term": {
"birthDate": {
"value": "1999-01-01"
}
}
}
]
}
},
"highlight": {
"fields": {
"*": {}
}
}
}

但是,在响应正文中,即使 name字段也已匹配,也仅突出显示了 birthDate字段:
"hits": [
{
"_index": "my_index",
"_type": "my_type",
"_id": "1a82fbb4-1268-42b9-9999-ef932f67a114",
"_score": 12.507131,
"_source": {
"name": "babken",
"birthDate": "1999-01-01",
},
"highlight": {
"name": [
"<em>babken</em>"
]
}
}
...

如果匹配,如何使 birthDate字段也出现在“突出显示”结果中?

我正在使用Elasticsearch 1.6

最佳答案

您需要将类型更改为string以启用突出显示。

启用要突出显示的字段的最低要求是该字段应为string类型。

以下issue对此没有更多讨论。

关于elasticsearch - 如何在Elasticsearch中突出显示日期字段?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31984992/

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