-
Notifications
You must be signed in to change notification settings - Fork 24.8k
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
Support point in time in async search #61560
Conversation
Pinging @elastic/es-search (:Search/Search) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It looks great, thanks @dnhatn !
return List.of(new Route(POST, "/{index}/_pit")); | ||
return List.of( | ||
new Route(POST, "/{index}/_pit"), | ||
new Route(POST, "/_pit")); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Maybe we should disable creating a _pit
for all indices ?
@jimczi Thank you for your review. I am merging this PR to unblock the work in ccs. I will discuss it with you tomorrow. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM
This commit integrates point in time into async search and ensures that it works correctly with security enabled. Relates elastic#61062
This commit integrates point in time into async search and ensures that it works correctly with security enabled. Relates #61062
This commit integrates point in time into async search and ensures that it works correctly with security enabled.
Relates #61062