airflow.executors.kubernetes_executor¶
KubernetesExecutor
See also
For more information on how the KubernetesExecutor works, take a look at the guide: Kubernetes Executor
Module Contents¶
- 
class airflow.executors.kubernetes_executor.KubernetesJobWatcher(namespace, multi_namespace_mode, watcher_queue, resource_version, worker_uuid, kube_config)[source]¶
- Bases: - multiprocessing.Process,- airflow.utils.log.logging_mixin.LoggingMixin- Watches for Kubernetes jobs 
- 
class airflow.executors.kubernetes_executor.AirflowKubernetesScheduler(kube_config, task_queue, result_queue, kube_client, worker_uuid)[source]¶
- Bases: - airflow.utils.log.logging_mixin.LoggingMixin- Airflow Scheduler for Kubernetes - 
run_next(self, next_job)[source]¶
- The run_next command will check the task_queue for any un-run jobs. It will then create a unique job-id, launch that job in the cluster, and store relevant info in the current_jobs map so we can track the job’s status 
 - 
sync(self)[source]¶
- The sync function checks the status of all currently running kubernetes jobs. If a job is completed, it’s status is placed in the result queue to be sent back to the scheduler. - Returns
 
 - 
static _strip_unsafe_kubernetes_special_chars(string)[source]¶
- Kubernetes only supports lowercase alphanumeric characters and “-” and “.” in the pod name However, there are special rules about how “-” and “.” can be used so let’s only keep alphanumeric chars see here for detail: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/ - Parameters
- string – The requested Pod name 
- Returns
- strPod name stripped of any unsafe characters
 
 - 
static _make_safe_pod_id(safe_dag_id, safe_task_id, safe_uuid)[source]¶
- Kubernetes pod names must be <= 253 chars and must pass the following regex for validation - ^[a-z0-9]([-a-z0-9]*[a-z0-9])?(\.[a-z0-9]([-a-z0-9]*[a-z0-9])?)*$- Parameters
- safe_dag_id – a dag_id with only alphanumeric characters 
- safe_task_id – a task_id with only alphanumeric characters 
- safe_uuid – a uuid 
 
- Returns
- strvalid Pod name of appropriate length
 
 - 
static _label_safe_datestring_to_datetime(string)[source]¶
- Kubernetes doesn’t permit “:” in labels. ISO datetime format uses “:” but not “_”, let’s replace “:” with “_” - Parameters
- string – str 
- Returns
- datetime.datetime object 
 
 
- 
- 
class airflow.executors.kubernetes_executor.KubernetesExecutor[source]¶
- Bases: - airflow.executors.base_executor.BaseExecutor,- airflow.utils.log.logging_mixin.LoggingMixin- Executor for Kubernetes - 
clear_not_launched_queued_tasks(self, session=None)[source]¶
- If the airflow scheduler restarts with pending “Queued” tasks, the tasks may or may not have been launched Thus, on starting up the scheduler let’s check every “Queued” task to see if it has been launched (ie: if there is a corresponding pod on kubernetes) - If it has been launched then do nothing, otherwise reset the state to “None” so the task will be rescheduled - This will not be necessary in a future version of airflow in which there is proper support for State.LAUNCHED 
 
-