LocalKubernetes Executor

Note

LocalKubernetesExecutor is no longer supported starting from Airflow 3.0.0. You can use the Using Multiple Executors Concurrently feature instead, which provides equivalent functionality in a more flexible manner.

The LocalKubernetesExecutor allows users to simultaneously run a LocalExecutor and a KubernetesExecutor. An executor is chosen to run a task based on the task’s queue.

LocalKubernetesExecutor provides the capability of running tasks with either LocalExecutor, which runs tasks within the scheduler service, or with KubernetesExecutor, which runs each task in its own pod on a kubernetes cluster.

Was this entry helpful?