I'm having a hard time trying to understand why the following query object doesn't make ES highlight all words within a _source column.
{
_source: [
'baseline',
'cdrp',
'date',
'description',
'dev_status',
'element',
'event',
'id'
],
track_total_hits: true,
query: {
bool: {
filter: [],
should: [
{
multi_match:{
query: "imposed calcs",
fields: ["cdrp","description","narrative.*","title","cop"]
}
}
]
}
},
highlight: { fields: { '*': {} } },
sort: [],
from: 0,
size: 50
}
By running this query I get the following highlight object returned. Notice only the "calcs" word is highlighted. How do I build the highlight object to make ES highlight "Imposed" as well?
"highlight": {
"description": [
"GAP Sub-window conn ONe-e: heve PP-BE Defined ASST requirem RV confsng, des MAN Imposed <em>calcs</em> mising"
]
}
I am using the following "description" mapping:
"description": {
"type": "text",
"analyzer": "search_synonyms"
},
"analysis": {
"analyzer": {
"search_synonyms": {
"tokenizer": "whitespace",
"filter": [
"graph_synonyms"
],
"normalizer": [
"normalizer_1"
]
}
},
"filter": {
"graph_synonyms": {
"type": "synonym_graph",
"synonyms_path": "synonym.txt"
}
},
"normalizer": {
"normalizer_1": {
"type": "custom",
"char_filter": [],
"filter": ["lowercase", "asciifolding"]
}
}
}
EDIT
I think your
graph_synonymsfilter is overriding the normalizer's filters. Try this:ORIGINAL
I suspect there's a some sort of a setting in your mapping preventing the match since I could not replicate this with a semi-default mapping:
Plugging in your query
yielding