-
Notifications
You must be signed in to change notification settings - Fork 15.1k
K8s test: Fix scheduler crash when using LocalExecutor #49677
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
Merged
potiuk
merged 2 commits into
apache:main
from
jason810496:fix/kubernetes-tests/local-executor-test
Apr 24, 2025
Merged
K8s test: Fix scheduler crash when using LocalExecutor #49677
potiuk
merged 2 commits into
apache:main
from
jason810496:fix/kubernetes-tests/local-executor-test
Apr 24, 2025
Conversation
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
potiuk
approved these changes
Apr 24, 2025
NICE! |
github-actions bot
pushed a commit
that referenced
this pull request
Apr 24, 2025
…49677) (cherry picked from commit 2372dcd) Co-authored-by: LIU ZHE YOU <[email protected]>
github-actions bot
pushed a commit
to aws-mwaa/upstream-to-airflow
that referenced
this pull request
Apr 24, 2025
…pache#49677) (cherry picked from commit 2372dcd) Co-authored-by: LIU ZHE YOU <[email protected]>
potiuk
pushed a commit
that referenced
this pull request
Apr 24, 2025
…49677) (#49718) (cherry picked from commit 2372dcd) Co-authored-by: LIU ZHE YOU <[email protected]>
kaxil
pushed a commit
that referenced
this pull request
Apr 24, 2025
(cherry picked from commit 2372dcd) Co-authored-by: LIU ZHE YOU <[email protected]>
Cool! Thanks for the fix! (I was looking into this a couple of weeks ago and could not find the root cause...) |
prabhusneha
pushed a commit
to astronomer/airflow
that referenced
this pull request
Apr 25, 2025
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Labels
area:CI
Airflow's tests and continious integration
area:dev-env
CI, pre-commit, pylint and other changes that do not change the behavior of the final code
area:kubernetes-tests
backport-to-v3-0-test
Mark PR with this label to backport to v3-0-test branch
full tests needed
We need to run full set of tests for this PR to merge
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.
closes: #47518
related: #49101
Why
The root cause of scheduler crash when using
LocalExecutor
has been resolved, but not sure which PR really addressed the error. Now we can unblock the k8s test forLocalExecutor
!What
We need to sightly refactor
ensure_deployment_health
toensure_resource_health
, sinceLocalExecutor
usestatefulset
instead ofdeployment
as k8s resource to run with.