SamWheating edited a comment on issue #19171: URL: https://github.com/apache/airflow/issues/19171#issuecomment-950008224
Hi there - the `AirflowTaskTimeout` is typically raised when a task's execution exceeds its `execution_timeout` which causes it to be stopped by Airflow. This parameter is a part of the BaseOperator class and thus applies to all Operators. https://github.com/apache/airflow/blob/86a2a19ad2bdc87a9ad14bb7fde9313b2d7489bb/airflow/models/baseoperator.py#L336-L338 Have you configured an `execution_timeout` in your task or in your default DAG's `default_args`? -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
