airflow.executors.debug_executor

DebugExecutor

See also

For more information on how the DebugExecutor works, take a look at the guide: Debug Executor

Module Contents

class airflow.executors.debug_executor.DebugExecutor[source]

Bases: airflow.executors.base_executor.BaseExecutor

This executor is meant for debugging purposes. It can be used with SQLite.

It executes one task instance at time. Additionally to support working with sensors, all sensors mode will be automatically set to "reschedule".

_terminated[source]
execute_async(self, *args, **kwargs)[source]

The method is replaced by custom trigger_task implementation.

sync(self)[source]
_run_task(self, ti: TaskInstance)[source]
queue_task_instance(self, task_instance: TaskInstance, mark_success: bool = False, pickle_id: Optional[str] = None, ignore_all_deps: bool = False, ignore_depends_on_past: bool = False, ignore_task_deps: bool = False, ignore_ti_state: bool = False, pool: Optional[str] = None, cfg_path: Optional[str] = None)[source]

Queues task instance with empty command because we do not need it.

trigger_tasks(self, open_slots: int)[source]

Triggers tasks. Instead of calling exec_async we just add task instance to tasks_to_run queue.

Parameters

open_slots -- Number of open slots

end(self)[source]

When the method is called we just set states of queued tasks to UPSTREAM_FAILED marking them as not executed.

terminate(self)[source]
change_state(self, key: TaskInstanceKey, state: str, info=None)[source]

Was this entry helpful?