运行 docker 来自 Google Cloud Composer 的运算符

Running docker operator from Google Cloud Composer

至于文档,Google Cloud Composer airflow worker 节点由专用的 kubernetes 集群提供服务:

我有一个 Docker 包含的 ETL 步骤,我想 运行 使用气流,最好在托管 Workers 的同一个 Kubernetes 上或在专用集群上。

从 Cloud Composer 气流环境启动 Docker Operation 的最佳实践是什么?

实用的解决方案是❤️

Google Cloud Composer 最近刚刚发布到一般可用性,因此您现在可以使用 KubernetesPodOperator 将 pods 启动到托管的同一 GKE 集群中气流用途。

确保您的 Composer 环境至少为 1.0.0

运算符示例:

import datetime

from airflow import models
from airflow.contrib.operators import kubernetes_pod_operator

with models.DAG(
    dag_id='composer_sample_kubernetes_pod',
    schedule_interval=datetime.timedelta(days=1),
    start_date=YESTERDAY) as dag:
# Only name, namespace, image, and task_id are required to create a
# KubernetesPodOperator. In Cloud Composer, currently the operator defaults
# to using the config file found at `/home/airflow/composer_kube_config if
# no `config_file` parameter is specified. By default it will contain the
# credentials for Cloud Composer's Google Kubernetes Engine cluster that is
# created upon environment creation.
kubernetes_min_pod = kubernetes_pod_operator.KubernetesPodOperator(
    # The ID specified for the task.
    task_id='pod-ex-minimum',
    # Name of task you want to run, used to generate Pod ID.
    name='pod-ex-minimum',
    # The namespace to run within Kubernetes, default namespace is
    # `default`. There is the potential for the resource starvation of
    # Airflow workers and scheduler within the Cloud Composer environment,
    # the recommended solution is to increase the amount of nodes in order
    # to satisfy the computing requirements. Alternatively, launching pods
    # into a custom namespace will stop fighting over resources.
    namespace='default',
    # Docker image specified. Defaults to hub.docker.com, but any fully
    # qualified URLs will point to a custom repository. Supports private
    # gcr.io images if the Composer Environment is under the same
    # project-id as the gcr.io images.
    image='gcr.io/gcp-runtimes/ubuntu_16_0_4')

其他资源: