0
down vote
favorite
I am trying to do exact phrase search in Elasticsearch , but I am facing a issue in obtaining the complete document. My doc has a field
"bkgcontent" :[ "qucik brown fox",
"quick brown fox jumped high",
"not related text"]
I am doing a phrase search and using query
GET /_search
{
"query" : {
"match_phrase": { "bkgcontent": "qucik brown fox" }
},
"highlight" : {
"pre_tags" : [ "<span style='font-weight: bold;'>" ],
"post_tags" : [ "</span>" ],
"number_of_fragments" : 0,
"fields" : {
"bkgdcontent" : { }
}
}
The result I get has
"highlight": {
"bkgcontent" :[ "<span style='font-weight: bold;'>qucik brown fox</span>",
"<span style='font-weight: bold;'>quick brown fox jumped high</span>"]
}
The issue is I am missing the third value which is not related text. Is there any way I can obtain the third value in in the highlight segment only rather than doing a manual look up.
After going through lots of documentation figured out that I can use "no_match_size": to get the data snippets which is not having any match.I have tried using that but it was of no use. Confused now !!!!
Any help will be great .