airflow.executors.sequential_executor

Module Contents

class airflow.executors.sequential_executor.SequentialExecutor[source]

Bases:airflow.executors.base_executor.BaseExecutor

This executor will only run one task instance at a time, can be used for debugging. It is also the only executor that can be used with sqlite since sqlite doesn’t support multiple connections.

Since we want airflow to work out of the box, it defaults to this SequentialExecutor alongside sqlite as you first install it.

execute_async(self, key, command, queue=None, executor_config=None)[source]
sync(self)[source]
end(self)[source]