-
Notifications
You must be signed in to change notification settings - Fork 25k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Fix highlighting apis to highlight more than 1 doc at once #11223
Comments
+1 it might be tricky to move the postings hl to highlight multiple documents at a time while maintaining the per document usecase needed with plain and fvh, but it's worth investing in making the postings highlighter work as it should. I will look into this. |
Cool! That'll be useful! The experimental_highlighter will actually need to decide which order to do For the postings highlighter I think the optimal ordering is segments, On Wed, May 20, 2015 at 4:20 AM, Luca Cavanna notifications@github.com
|
postingshighlighter in lucene takes your ordinary |
The |
This has been open for quite a while, and we were not able to prioritize it so far. For now I'm going to close this as something we aren't planning on implementing. We can re-open it later if needed. |
Highlighting apis seem to only handle one document at a time, but this totally breaks PostingsHighlighter design on elasticsearch.
The whole idea behind this highlighter is
#queryterms
<#summarydocs
. But performance totally falls apart because today documents are highlighted one at a time.The text was updated successfully, but these errors were encountered: