-
Notifications
You must be signed in to change notification settings - Fork 1.3k
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
Sorting an empty result should not fail. #1908
Comments
Currently it is not possible to pass this to Spring Data Elasticsearch. I created #1911 to address this. |
If you would like us to look at this issue, please provide the requested information. If the information is not provided within the next 7 days this issue will be closed. |
@spring-projects-issues wich requested information do you need ? |
I just don't want to close an issue without giving the chance of further feedback, so I set the waiting-for-feedback which will close the issue if no further feedback comes from the OP. So I'll close this one now ;-) |
I have this method
ebookReviewRepository.findByEbookIdOrderByCommentDateDesc(ebookId, PageRequest.of(page, size));
I noticed that when the index is empty, I get the error
Elasticsearch exception [type=search_phase_execution_exception, reason=all shards failed]
. This error is due to the fact that elastic search tries to sort and empty result.They added
"ignore_unmapped": true
to ignore it:elastic/elasticsearch#1558
But it how could i use the ignore_unmapped option in Spring Data elastic search ? There are no traces in the documentation.
I added a check in my services workaround, but for large data, making count each time is not a solution.
// We have to check first if we have data, in order to avoid issues about sorting when empty
How could I handle it correctly ? Thanks ?
The text was updated successfully, but these errors were encountered: