使用Airflow - Python从本地系统上传文件到Google Bucket

问题描述 投票:1回答:1

所以我在气流上运行这个操作员

from airflow.contrib.operators.file_to_gcs import FileToGoogleCloudStorageOperator

gcp_operator = \
    FileToGoogleCloudStorageOperator(
        task_id='gcp_task',
        src='/Users/john/Documents/tmp',
        dst='gs://constantine-bucket',
        bucket='constantine-bucket',
        google_cloud_storage_conn_id='DataScience',
        mime_type='Folder',
        dag=dag
    )

当我运行这个时,我收到一个错误

"error": "invalid_scope",
"error_description": "\u0026quot;https://www.googleapis.com/auth/devstorage.read_write\u0026quot; is not a valid audience string

有没有人知道如何在气流上运行此运算符?

python google-cloud-platform google-cloud-datastore google-cloud-storage airflow
1个回答
5
投票

听起来像缺少依赖。您应该能够使用以下命令安装GCP挂钩和运算符:

pip install apache-airflow[gcp_api]

有关更多信息,请参阅此页面:https://airflow.apache.org/installation.html

© www.soinside.com 2019 - 2024. All rights reserved.