[v3-1-test] Fix KubernetesPodOperator XCom sidecar hang on Alpine (#58931) - #63379
Closed
github-actions[bot] wants to merge 1 commit into
Closed
[v3-1-test] Fix KubernetesPodOperator XCom sidecar hang on Alpine (#58931)#63379github-actions[bot] wants to merge 1 commit into
github-actions[bot] wants to merge 1 commit into
Conversation
…8931) * Fix KubernetesPodOperator XCom sidecar hang on Alpine The [extract_xcom_kill] method previously used to identify and kill the sidecar process. However, the implementation in some Alpine/BusyBox versions does not support the flag, causing the command to fail and the sidecar to hang indefinitely. This commit replaces the command with a portable shell loop that iterates over to identify processes owned by the current user. This ensures compatibility with all Alpine versions and removes the dependency on . * changed alpine fallback command * added conditional fallback xcom kill command when the primary one fails * Revert "changed alpine fallback command" This reverts commit 8c4b5f5. * Convert the xcom kill command conditioning to exception and try/catch * Fixed command string format (cherry picked from commit ed78d6c) Co-authored-by: Yahely Ushpiz <102915448+YahelyUshpiz@users.noreply.github.com>
Contributor
|
No backport needed |
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.
Fix KubernetesPodOperator XCom sidecar hang on Alpine
The [extract_xcom_kill] method previously used to identify and kill the sidecar process. However, the implementation in some Alpine/BusyBox versions does not support the flag, causing the command to fail and the sidecar to hang indefinitely.
This commit replaces the command with a portable shell loop that iterates over to identify processes owned by the current user. This ensures compatibility with all Alpine versions and removes the dependency on .
changed alpine fallback command
added conditional fallback xcom kill command when the primary one fails
Revert "changed alpine fallback command"
This reverts commit 8c4b5f5.
Convert the xcom kill command conditioning to exception and try/catch
Fixed command string format
(cherry picked from commit ed78d6c)
Co-authored-by: Yahely Ushpiz 102915448+YahelyUshpiz@users.noreply.github.com