[branch-2.10][fix][broker] Avoid infinite bundle unloading (#20822) - #20877
Merged
Technoboy- merged 1 commit intoAug 8, 2023
Merged
Conversation
(cherry picked from commit 3f63768)
Demogorgon314
requested review from
BewareMyPower,
Technoboy-,
codelipenghui,
gaoran10 and
mattisonchao
July 26, 2023 01:53
gaoran10
approved these changes
Jul 26, 2023
Member
Author
|
@BewareMyPower Do you know why the CPP test failed? |
Contributor
|
Could we just ignore this test? The error seems to be related to the |
Contributor
|
I removed this workflow: b0e2c0a |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
(cherry picked from commit 3f63768)
Motivation
The bundle ownership assignment logic doesn't know the previous unloaded broker when unloading happens. It might assign the bundle to the same broker. In this case, it might cause an infinite bundle unloading loop.
To resolve this issue, we can check the destination broker when doing the
doLoadSheddingstage. When the destination broker is the same as the current owner broker, we can skip this unload, and if it is different, we set the new owner in this stage.Modifications
Verifying this change
See the
ModularLoadManagerImplTest#testLoadSheddingunit test.Documentation
docdoc-requireddoc-not-neededdoc-complete