0
我想突出顯示所有可搜索字段的搜索文本。elasticsearch hightlight查詢所有字段
我用this doc尋求幫助。 突出顯示不起作用,查詢得到正常結果沒有任何突出顯示。 查詢沒有得到突出顯示,我的查詢出了什麼問題?
我的elastisearch版本「5.5.2」。
_mapping指數爲: -
{
"products": {
"mappings": {
"product": {
"_all": {
"enabled": true
},
"properties": {
"description": {
"type": "text"
},
"price": {
"type": "long"
},
"title": {
"type": "text",
"boost": 2
}
}
}
}
}
}
我elasticsearch查詢: -
curl -XGET 'localhost:9200/_search?pretty' -H 'Content-Type: application/json' -d'
{
"query" : {
"match": { "_all": "rock clamb" }
},
"highlight" : {
"pre_tags" : ["<tag1>"],
"post_tags" : ["</tag1>"],
"fields" : {
"_all" : {}
}
}
}'
輸出:
{
"took" : 2,
"timed_out" : false,
"_shards" : {
"total" : 6,
"successful" : 6,
"failed" : 0
},
"hits" : {
"total" : 2,
"max_score" : 0.99835247,
"hits" : [
{
"_index" : "products",
"_type" : "product",
"_id" : "2",
"_score" : 0.99835247,
"_source" : {
"title" : "Push Clamb Car Holder for Samsung and iPhone",
"price" : 3,
"description" : "A high quality car holder for smartphones that features a push clamp function Features: Universal car holder Height adjustment pivot Ball shape 360"
}
},
{
"_index" : "products",
"_type" : "product",
"_id" : "5",
"_score" : 0.7741236,
"_source" : {
"price" : 1,
"description" : "This item fits directly to all 3 power boxes (7850 7880 7890)Together in use these clamps are bi-polarEach individual clamb is uni-polar cable include",
"title" : "Rimba Luxurous Electrosex clamps Uni-polar (2 pcs) - Naughty"
}
}
]
}
}