gpt4 book ai didi

airflow - 使用DB动态生成 Airflow 任务

转载 作者:行者123 更新时间:2023-12-02 03:28:26 28 4
gpt4 key购买 nike

我想像这样运行 Airflow dag ->

  • 我有 2 个 Airflow 工作人员 W1 和 W2。
  • 在 W1 中,我安排了一个任务 (W1-1),但在 W2 中,我想创建 X 个任务(W2-1、W2-2 ... W2-X)。
  • 每个任务的数字 X 和 bash 命令将从数据库调用中派生。
  • 工作线程 W2 的所有任务应在 W1 完成后并行运行。

这是我的代码

dag = DAG('deploy_single', catchup=False, default_args=default_args, schedule_interval='16 15 * * *')

t1 = BashOperator(
task_id='dummy_task',
bash_command='echo hi > /tmp/hi',
queue='W1_queue',
dag=dag)

get_all_engines = "select full_command, queue_name from internal_airflow_hosts where logical_group = 'live_engines';"

db_creds = json.loads(open('/opt/airflow/db_creds.json').read())
conn_dict = db_creds["airflowdb_local"]
connection = psycopg2.connect(**conn_dict)

cursor = connection.cursor()

cursor.execute(get_all_engines)
records = cursor.fetchall()
i = 1
for record in records:
t = BashOperator(
task_id='script_test_'+str(i),
bash_command="{full_command} ".format(full_command=str(record[0])),
queue=str(record[1]),
dag=dag)
t.set_upstream(t1)
i += 1

cursor.close()
connection.close()

但是,当我运行此命令时,W1 上的任务成功完成,但 W2 上的所有任务都失败了。在 Airflow UI 中,我可以看到它可以解决正确数量的任务(本例中为 10 个),但这 10 个任务中的每一个都失败了。

查看日志,我发现在 W2(位于另一台机器上)上,airflow 找不到 db_creds.json 文件。

我不想向 W2 提供数据库信用文件。

我的问题是在这种情况下如何动态创建 Airflow 任务?基本上,我想在 Airflow 服务器上运行数据库查询,并根据该查询的结果将任务分配给一名或多名工作人员。数据库将包含有关哪些引擎处于事件状态等的更新信息,我希望 DAG 反射(reflect)这一点。从日志来看,似乎每个工作人员都运行数据库查询。向每个工作人员提供对数据库的访问权限并不是一种选择。

最佳答案

谢谢@viraj-parekh 和@cwurtz。

经过多次尝试和错误,找到了在这种情况下使用 Airflow 变量的正确方法。

第 1 步)我们创建另一个名为 gen_var.py 的脚本并将其放置在 dag 文件夹中。这样,调度程序将获取并生成变量。如果生成变量的代码位于 deploy_single dag 中,那么我们会遇到相同的依赖关系问题,因为工作线程也会尝试处理该 dag。

"""
Code that goes along with the Airflow tutorial located at:
https://github.com/airbnb/airflow/blob/master/airflow/example_dags/tutorial.py
"""
import json
import psycopg2
from airflow.models import Variable
from psycopg2.extensions import AsIs

get_all_engines = "select full_command, queue_name from internal_airflow_hosts where logical_group = 'live_engines';"

db_creds = json.loads(open('/opt/airflow/db_creds.json').read())
conn_dict = db_creds["airflowdb_local"]
connection = psycopg2.connect(**conn_dict)

cursor = connection.cursor()

cursor.execute(get_all_engines)
records = cursor.fetchall()

hosts = {}
i = 1
for record in records:
comm_dict = {}
comm_dict['full_command'] = str(record[0])
comm_dict['queue_name'] = str(record[1])
hosts[i] = comm_dict
i += 1

cursor.close()
connection.close()

Variable.set("hosts",hosts,serialize_json=True)

请注意对 serialize_json 的调用。 Airflow 将尝试将变量存储为字符串。如果您希望将其存储为字典,请使用 serialize_json=True。 Airflow 仍将通过 json.dumps

将其存储为字符串

第 2 步)简化 dag 并调用此“hosts” 变量(现在反序列化以取回字典),如下所示 -

hoztz = Variable.get("hosts",deserialize_json=True)
for key in hoztz:
host = hoztz.get(key)
t = BashOperator(
task_id='script_test_'+str(key),
bash_command="{full_command} ".format(full_command=str(host.get('full_command'))),
queue=str(host.get('queue_name')),
dag=dag)
t.set_upstream(t1)

希望对其他人有帮助。

关于airflow - 使用DB动态生成 Airflow 任务,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51131506/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com