-
Notifications
You must be signed in to change notification settings - Fork 16.4k
Closed
Labels
kind:bugThis is a clearly a bugThis is a clearly a bugpending-responsestaleStale PRs per the .github/workflows/stale.yml policy fileStale PRs per the .github/workflows/stale.yml policy file
Description
Apache Airflow version: 1.10.9
What happened: We set the execution_timeout set to 13 minutes, tasks will log that they are timing out at 13 minutes but are left hanging in run state.
What you expected to happen: if it goes beyond max time set it will raise and fail.
How to reproduce it: example code:
default_args = {
'owner': 'owner',
'description': 'description',
'depend_on_past': False,
'start_date': datetime(2020, 3, 11, tzinfo=execution_tz),
'retries': 1,
'retry_delay': timedelta(minutes=2),
'execution_timeout': timedelta(minutes=13)
}
dag = DAG(
'task_name',
default_args=default_args,
schedule_interval='8/15 * * * *',
catchup=False,
dagrun_timeout=timedelta(minutes=14)
)
stijndehaes and ye11owSub
Metadata
Metadata
Assignees
Labels
kind:bugThis is a clearly a bugThis is a clearly a bugpending-responsestaleStale PRs per the .github/workflows/stale.yml policy fileStale PRs per the .github/workflows/stale.yml policy file