Uh oh!
There was an error while loading. Please reload this page.
[SPARK-40596][CORE] Populate ExecutorDecommission with messages in ExecutorDecommissionInfo - #38030
[SPARK-40596][CORE] Populate ExecutorDecommission with messages in ExecutorDecommissionInfo#38030bozhang2820 wants to merge 4 commits into
Conversation
How/where are we using the message ? |
mridulm
commented
Sep 28, 2022
Ok, so this is mainly to propagate in +CC @dongjoon-hyun |
dongjoon-hyun
commented
Sep 28, 2022
Thank you, @mridulm . |
Uh oh!
There was an error while loading. Please reload this page.
dongjoon-hyun
left a comment
There was a problem hiding this comment.
Please revert the change on MapStatus.
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
dongjoon-hyun
commented
Oct 4, 2022
Could you address the review comments, @bozhang2820 ? |
bozhang2820
commented
Oct 8, 2022
Sorry for the late response. I was on vacation last week. Addressed the review comments. |
bozhang2820
commented
Oct 9, 2022
Build passed with a retry: https://github.com/bozhang2820/spark/actions/runs/3209525689/jobs/5251496034 |
dongjoon-hyun
left a comment
There was a problem hiding this comment.
Thank you for update, @bozhang2820 . It looks good to me.
What do you think about the Today's patch, @mridulm , @Ngone51 , @xuanyuanking?
Ngone51
commented
Oct 11, 2022
Thanks, merged to master! |
dongjoon-hyun
commented
Oct 11, 2022
Thank you all! :) |
What changes were proposed in this pull request?
This change populates
ExecutorDecommissionwith messages inExecutorDecommissionInfo.Why are the changes needed?
Currently the message in
ExecutorDecommissionis a fixed value ("Executor decommission."), so it is the same for all cases, e.g. spot instance interruptions and auto-scaling down. With this change we can better differentiate those cases.Does this PR introduce any user-facing change?
No.
How was this patch tested?
Added a unit test.