8

至于文档,Google Cloud Composer 气流工作节点由专用的 kubernetes 集群提供服务:

在此处输入图像描述

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

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

务实的解决方案是❤️

4

1 回答 1

7

Google Cloud Composer 最近刚刚发布到正式版,您现在可以使用 aKubernetesPodOperator将 pod 启动到托管气流使用的同一个 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')

其他资源:

于 2018-07-26T16:50:26.393 回答