-
Notifications
You must be signed in to change notification settings - Fork 115
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 the flaky in allocation IT during multinode test #983
Fix the flaky in allocation IT during multinode test #983
Conversation
Signed-off-by: bowenlan-amzn <[email protected]>
@@ -100,9 +97,6 @@ class AllocationActionIT : IndexStateManagementRestTestCase() { | |||
assertEquals(actionConfig.require["_name"], settings["index.routing.allocation.require._name"]) | |||
} | |||
|
|||
// Third execution: Waits for allocation to complete, which will happen in this execution since index is small |
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.
No need to trigger the third execution, since the second execution already apply the allocation setting, and we just need to wait for the setting takes effect
The third execution trigger seems collide with the deletion of ISM system index in multi-node test, which could like to a corrupt node lock. Check the analysis here #90 (comment)
Codecov Report
@@ Coverage Diff @@
## main #983 +/- ##
============================================
- Coverage 74.69% 74.56% -0.13%
+ Complexity 2753 2751 -2
============================================
Files 361 361
Lines 16077 16077
Branches 2314 2314
============================================
- Hits 12008 11988 -20
- Misses 2788 2811 +23
+ Partials 1281 1278 -3 |
Signed-off-by: bowenlan-amzn <[email protected]> (cherry picked from commit 502097e) Signed-off-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
(cherry picked from commit 502097e) Signed-off-by: bowenlan-amzn <[email protected]> Signed-off-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com> Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
…ect#983) Signed-off-by: bowenlan-amzn <[email protected]>
Issue #, if available:
Description of changes:
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.