TL;DR : I don't understand how highlighting is working, and more precisely how fragment_size
influences the highlighting.
On a new ES installation (1.4.2), I'm creating an index with the following settings :
{
"mappings" : {
"test": {
"properties": {
"content" : {
"type" : "string",
"analyzer" : "french"
}
}
}
}
}
Then, I'm inserting the following document :
{
"content": "Bon alors mettons que j'ouvre avec un sirop de huit. Si c'est vous qui avez siroté au tour d'avant, ça tourne dans votre sens. Soit vous laissez filer, vous dites file-sirop, soit vous vous sentez de relancer et vous annoncez un sirop de quatorze. Vous, comme on a commencé les annonces, vous avez pas le droit de laisser filer. Vous pouvez soit relancer un sirop de vingt-et-un, soit vous abandonnez le tour et vous dites couche-sirop. Ou sirop Jeannot, ça dépend des régions. Et après, soit on fait la partie soit je fais un contre-sirop, boum ! Et à partir de là, sirop de pomme sur vingt-et-un donc on fait la partie en quatre tours jusqu'à qu'il y en ait un qui sirote."
}
Finally, I'm querying "couche-sirop" and highlighting the result, with different values of N (fragment_size
):
{
"query": {
"query_string": {
"query": "\"couche-sirop\"",
"fields": [
"content"
],
"default_operator": "and"
}
},
"highlight": {
"number_of_fragments": 5,
"type": "plain",
"fields": {
"content": {
"fragment_size": N
}
}
}
}
Some results:
[' <em>couche</em>', '-<em>sirop</em>. Ou sirop']
[' et vous dites <em>couche</em>', '-<em>sirop</em>. Ou sirop']
[' <em>couche</em>-<em>sirop</em>']
[' et vous dites <em>couche</em>', '-<em>sirop</em>. Ou sirop']
[' et vous dites <em>couche</em>-<em>sirop</em>']
With greater N values
[' et vous dites <em>couche</em>-<em>sirop</em>. Ou sirop Jeannot, ça dépend des régions. Et après']
[' <em>couche</em>-<em>sirop</em>. Ou sirop Jeannot, ça dépend des régions. Et après']
[' un sirop de vingt-et-un, soit vous abandonnez le tour et vous dites <em>couche</em>', '-<em>sirop</em>. Ou sirop Jeannot, ça dépend des régions. Et après, soit on fait']
[' de vingt-et-un, soit vous abandonnez le tour et vous dites <em>couche</em>-<em>sirop</em>']
Can anyone explain why :
I also tried the postings
and the fast vector
highlighters with the same results
Thanks !
I suspect this is a bug. I opened an issue on github : https://github.com/elasticsearch/elasticsearch/issues/9442
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With