-
Notifications
You must be signed in to change notification settings - Fork 118
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
Strengthen scroll search in Coordinator #356
Conversation
Codecov Report
@@ Coverage Diff @@
## main #356 +/- ##
============================================
- Coverage 75.09% 75.01% -0.08%
- Complexity 2135 2141 +6
============================================
Files 262 262
Lines 12444 12461 +17
Branches 1966 1969 +3
============================================
+ Hits 9345 9348 +3
- Misses 2028 2040 +12
- Partials 1071 1073 +2
Continue to review full report at Codecov.
|
src/main/kotlin/org/opensearch/indexmanagement/indexstatemanagement/ManagedIndexCoordinator.kt
Show resolved
Hide resolved
Normally user won't have >10k ISM jobs, so we don't want to use scroll search every time. Signed-off-by: bowenlan-amzn <bowenlan23@gmail.com>
src/main/kotlin/org/opensearch/indexmanagement/indexstatemanagement/ManagedIndexCoordinator.kt
Outdated
Show resolved
Hide resolved
src/main/kotlin/org/opensearch/indexmanagement/indexstatemanagement/ManagedIndexCoordinator.kt
Show resolved
Hide resolved
src/main/kotlin/org/opensearch/indexmanagement/indexstatemanagement/ManagedIndexCoordinator.kt
Outdated
Show resolved
Hide resolved
.indices(INDEX_MANAGEMENT_INDEX) | ||
.scroll(TimeValue.timeValueMinutes(1)) | ||
val req = SearchRequest().indices(INDEX_MANAGEMENT_INDEX) | ||
.allowPartialSearchResults(false) |
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.
My feeling is that this line alone would be enough for the fix. Do you not trust it?
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's supposed to throw exception. But I just don't know every thing for scroll search, so still going to check the response failure here
src/main/kotlin/org/opensearch/indexmanagement/indexstatemanagement/ManagedIndexCoordinator.kt
Show resolved
Hide resolved
The failed test looks to be a race condition
We delete index, but coordinator listen to index delete event and clean metadata, I see this error log:
Basically for delete action, this race condition always exists. |
src/main/kotlin/org/opensearch/indexmanagement/indexstatemanagement/util/ManagedIndexUtils.kt
Outdated
Show resolved
Hide resolved
Signed-off-by: bowenlan-amzn <bowenlan23@gmail.com>
* Strengthen scroll search in Coordinator Normally user won't have >10k ISM jobs, so we don't want to use scroll search every time. Signed-off-by: bowenlan-amzn <bowenlan23@gmail.com> (cherry picked from commit d7469bd)
* Strengthen scroll search in Coordinator Normally user won't have >10k ISM jobs, so we don't want to use scroll search every time. Signed-off-by: bowenlan-amzn <bowenlan23@gmail.com> (cherry picked from commit d7469bd)
* Strengthen scroll search in Coordinator Normally user won't have >10k ISM jobs, so we don't want to use scroll search every time. Signed-off-by: bowenlan-amzn <bowenlan23@gmail.com> (cherry picked from commit d7469bd)
* Strengthen scroll search in Coordinator Normally user won't have >10k ISM jobs, so we don't want to use scroll search every time. Signed-off-by: bowenlan-amzn <bowenlan23@gmail.com> (cherry picked from commit d7469bd) Co-authored-by: bowenlan-amzn <bowenlan23@gmail.com>
* Strengthen scroll search in Coordinator Normally user won't have >10k ISM jobs, so we don't want to use scroll search every time. Signed-off-by: bowenlan-amzn <bowenlan23@gmail.com> (cherry picked from commit d7469bd) Co-authored-by: bowenlan-amzn <bowenlan23@gmail.com>
* Strengthen scroll search in Coordinator Normally user won't have >10k ISM jobs, so we don't want to use scroll search every time. Signed-off-by: bowenlan-amzn <bowenlan23@gmail.com> (cherry picked from commit d7469bd) Co-authored-by: bowenlan-amzn <bowenlan23@gmail.com>
* Strengthen scroll search in Coordinator Normally user won't have >10k ISM jobs, so we don't want to use scroll search every time. Signed-off-by: bowenlan-amzn <bowenlan23@gmail.com>
* Strengthen scroll search in Coordinator (#356) * Removes rc1 qualifier (#353) * Allows error in shrink test * Adds workflow to create documentation issues (#358) * Adds documentation issue workflow * Makes the issue template more relevant * Data model and Basic CRUD APIs Signed-off-by: bowenlan-amzn <bowenlan23@gmail.com>
* Strengthen scroll search in Coordinator Normally user won't have >10k ISM jobs, so we don't want to use scroll search every time. Signed-off-by: bowenlan-amzn <bowenlan23@gmail.com>
Signed-off-by: bowenlan-amzn bowenlan23@gmail.com
Issue #, if available:
Description of changes:
Normally user won't have >10k ISM jobs, so we don't want to use scroll search every time.
For getting accurate total hits, there's a param
track_total_hits
, just keep a note here.CheckList:
By submitting this pull request, I confirm that my contribution is made under the terms of the Apache 2.0 license.
For more information on following Developer Certificate of Origin and signing off your commits, please check here.