airflow.models.taskfail

Taskfail tracks the failed run durations of each task instance

Module Contents

class airflow.models.taskfail.TaskFail(task, execution_date, start_date, end_date)[source]

Bases: airflow.models.base.Base

TaskFail tracks the failed run durations of each task instance.

__tablename__ = task_fail[source]
id[source]
task_id[source]
dag_id[source]
execution_date[source]
start_date[source]
end_date[source]
duration[source]
__table_args__[source]

Was this entry helpful?