You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Problem:
It seems that unified highlighter does not care about fragment size. When fragment_size is 1000 it should not split but it does split on first point (dot). I know if fragment_size = 0 then it not split, but that's not what I want.
I have fields with many sentence I want to split around 256 characters, but highlighter splitting always on first point hit.
The text was updated successfully, but these errors were encountered:
This is expected. In this version the unified highlighter splits the text on sentence boundaries and creates one fragment per sentence or multiple fragments if the sentence is bigger than fragment_size.
Though we changed the behavior in 6.2 where it will be able to select all sentences that fit into fragment_size: #28132
I have:
Elasticsearch 6.1.2
Mapping:
Search:
Result:
Problem:
It seems that unified highlighter does not care about fragment size. When fragment_size is 1000 it should not split but it does split on first point (dot). I know if fragment_size = 0 then it not split, but that's not what I want.
I have fields with many sentence I want to split around 256 characters, but highlighter splitting always on first point hit.
The text was updated successfully, but these errors were encountered: