3

每次气流 dag 运行并从所有任务访问该文件时,我们可以创建唯一的文件名吗?我尝试创建全局变量(output_filename)并为其附加时间戳。但是,当我在任务中访问该文件名时,每个任务都会生成不同的文件名,因为它正在计算每个任务中的时间戳。下面是示例代码:

table_name = 'Test_ABC'
start_date = datetime.now()
cur_tmpstp = start_date.strftime('%Y_%m_%d')

output_filename = table_name + "_" + cur_tmpstp + ".csv"
S3_landing_path = "s3://abc/"

def clean_up():
    if os.path.exists(output_filename):
        os.remove(output_filename)


task_1 = BashOperator(
    task_id='task_1',
    bash_command="aws s3 cp %s %s/ " %(output_filename, S3_landing_path, ),
    dag=dag)

task_2_cleanup = PythonOperator(
    task_id='task_2_cleanup',
    python_callable=clean_up,
    dag=dag)

我们有更多任务需要访问 output_filename。我们如何在所有任务中访问 output_filename 全局变量?

4

2 回答 2

2

如果您只需要日期粒度的时间戳,那么您可以使用带有模板的默认变量。此类变量的一些示例(取自http://airflow.readthedocs.io/en/latest/code.html#default-variables)是

{{ ds }}    the execution date as YYYY-MM-DD
{{ ds_nodash }}     the execution date as YYYYMMDD
{{ execution_date }}    the execution_date, (datetime.datetime)
于 2017-06-14T12:14:55.373 回答
0

如果您需要具有时间粒度的时间戳,可以使用全局变量和带有 python 运算符的任务:

DAG_NAME = 'Some DAG name'

ts = Variable.get(f"{DAG_NAME}_ts", default_var=None)

def generate_ts(*args, **kwargs):
    ts = datetime.now().isoformat()
    Variable.set(f"{DAG_NAME}_ts", ts)

generate_ts_task = PythonOperator(
    task_id='generate_ts',
    python_callable=generate_ts,
    dag=dag,
)
于 2019-11-13T08:45:59.817 回答