繁体   English   中英

Airflow - 如何从 BigQuery 表中获取数据并将其用作列表?

[英]Airflow - how can I get data from a BigQuery table and use it as a list?

我正在尝试获取一列,然后使用值来创建文件名。

我尝试了以下方法,它应该创建一个 csv,其名称为指定列中的第一个值。 它说列表是空的,但当我尝试使用它时

bq_data = []
get_data = BigQueryGetDataOperator(
    task_id='get_data_from_bq',
    dataset_id='SK22',
    table_id='current_times',
    max_results='100',
    selected_fields='current_timestamps',
)


def process_data_from_bq(**kwargs):
    ti = kwargs['ti']
    global bq_data
    bq_data = ti.xcom_pull(task_ids='get_data_from_bq')


process_data = PythonOperator(
        task_id='process_data_from_bq',
        python_callable=process_data_from_bq,
        provide_context=True)
run_export = BigQueryToCloudStorageOperator(
        task_id=f"save_data_on_storage{str(bq_data[0])}",
        source_project_dataset_table="a-data-set",
        destination_cloud_storage_uris=[f"gs://europe-west1-airflow-bucket/data/test{bq_data[0]}.csv"],
        export_format="CSV",
        field_delimiter=",",
        print_header=False,
        dag=dag,
    )

get_data >> process_data >> run_export

我认为不需要在BigQueryGetDataOperatorBigQueryToCloudStorageOperator之间使用PythonOperator ,您可以直接在BigQueryToCloudStorageOperator中使用xcom pull

get_data = BigQueryGetDataOperator(
    task_id='get_data_from_bq',
    dataset_id='SK22',
    table_id='current_times',
    max_results='100',
    selected_fields='current_timestamps',
)

run_export = BigQueryToCloudStorageOperator(
        task_id="save_data_on_storage",
        source_project_dataset_table="a-data-set",
        destination_cloud_storage_uris=[f"gs://europe-west1-airflow-bucket/data/test" + "{{ ti.xcom_pull(task_ids='get_data_from_bq')[0] }}" + ".csv"],
        export_format="CSV",
        field_delimiter=",",
        print_header=False,
        dag=dag,
    )

get_data >> run_export

destination_cloud_storage_uris是一个模板化参数,您可以在其中传递Jinja模板语法。

我没有测试语法,但它应该可以工作。

我也不建议你使用像bq_data这样的全局变量在operator之间传递数据,因为它不起作用,你需要找到一种方法直接在operator中使用xcomJinja模板或访问operator的当前Context ).

我还注意到您没有使用最新的Airflow运算符:

如果您想使用 BigQueryGetDataOperator 运算符提供的所有列表并从中计算目标 URI 列表,我建议您使用另一种解决方案

from typing import List, Dict

from airflow.providers.google.cloud.transfers.bigquery_to_gcs import BigQueryToGCSOperator

class CustomBigQueryToGCSOperator(BigQueryToGCSOperator):

    def __init__(self, **kwargs) -> None:
        super().__init__(**kwargs)

    def execute(self, context):
        task_instance = context['task_instance']
        data_from_bq: List[Dict] = task_instance.xcom_pull('get_data_from_bq')

        destination_cloud_storage_uris: List[str] = list(map(self.to_destination_cloud_storage_uris, data_from_bq))

        self.destination_cloud_storage_uris = destination_cloud_storage_uris

        super(CustomBigQueryToGCSOperator, self).execute(context)

    def to_destination_cloud_storage_uris(self, data_from_bq: Dict) -> str:
        return f"gs://europe-west1-airflow-bucket/data/test{data_from_bq['your_field']}.csv"

一些解释:

  • 我创建了一个扩展BigQueryToGCSOperator的自定义运算符
  • execute方法中,我可以访问操作员的当前上下文
  • 从上下文中,我可以从BigQueryGetDataOperator提供的BQ中检索列表。 我假设这是一个 Dict 列表,但你必须确认这一点
  • 我从这个字典列表中计算出一个目标GCS URI 列表
  • 我将计算出的目标GCS URI 分配给运算符中的相应字段

此解决方案的优点是,您可以更灵活地应用基于 xcom 值的逻辑。

缺点是它有点冗长。

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM