-
Notifications
You must be signed in to change notification settings - Fork 14.5k
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
dagrun_timeout doesn't kill task instances on timeout #12912
Comments
Thanks for opening your first issue here! Be sure to follow the issue template! |
hit this problem too in airflow 2.0 And it blocked the next Dag_run as
I'm not sure if the block of the next Dag_run is caused by the same issue: @turbaszek could you help check this? |
Would it make sense to get the DAG's task instances and set any tasks to https://github.com/apache/airflow/blob/master/airflow/jobs/scheduler_job.py#L1694-L1718 |
Apache Airflow version:
1.10.12
What happened:
I created dag with dagrun_timeout=2 minutes.
After 2 minutes dagrun is marked as failed and the next one is started, but task keeps going.
What you expected to happen:
Task is killed with dag run as it is done when you mark dagrun failed manually.
How to reproduce it:
The text was updated successfully, but these errors were encountered: