## Section 1 | Import Modules
## Section 2 | DAG Default Arguments
## Section 3 | Instantiate the DAG
## Section 4 | defining Utils
## Section 5 | Task defining
## Section 6 | Defining dependecies
## Section 1 | Import Modules
from airflow import DAG
from datetime import datetime
from airflow.operators.python_operator import PythonOperator
## Section 2 | DAG Default Arguments
default_args = {
'owner': 'Sourav',
'depends_on_past': False,
'start_date': datetime(2021, 6, 11),
'retries': 0,
}
## Section 3 | Instantiate the DAG
dag = DAG('basic_skeleton',
description='basic skeleton of a DAG',
default_args=default_args,
schedule_interval=None,
catchup=False,
tags=['skeleton'],
)
x = 0
## Section 4 | defining Utils
def print_context(**kwargs):
print("hello world")
return "hello world!!!"
def sum(**kwargs):
c = 1+2
return c
def diff(**kwargs):
global c
c = 2-1
return c
## Doubts
x = c
y = dag.get_dagrun(execution_date=dag.get_latest_execution_date()).conf
## Section 5 | Task defining
with dag:
t_printHello_prejob = PythonOperator(
task_id='t_printHello_prejob',
provide_context=True,
python_callable=print_context,
dag=dag,
)
t_sum_job = PythonOperator(
task_id='t_sum_job',
python_callable=sum,
provide_context=True,
dag=dag
)
## Section 6 | Defining dependecies
t_printHello_prejob>>t_sum_job
现在,我需要知道两件事:
x = c,我正在尝试使用这个变量 x 来定义一个 for 循环,用于下一个任务需要拍摄的次数。不知何故,Airflow UI 是从一个基本编译的 .py 文件呈现的,并且 x 加载的值为 0 而不是 1,即使我
global c
在函数中这样做。有时,airflow UI 会偶然显示 1 的值。我想知道它背后的逻辑。如何控制全局变量?对于每个 dagrun,我想
conf
摆脱气流模板范围并在全局 python 区域 [非气流模板] 中使用它。我了解,我可以在气流模板中使用 jinja 宏。但是,我需要访问气流范围之外的 conf。y = dag.get_dagrun(execution_date=dag.get_latest_execution_date()).conf
该语句为我提供了最新的 dag_run conf。但是,对我来说,我有多个 DAG_runs 同时运行,所以我可以在这个变量中为那个 dagrun 获取当前的 dag_run conf 吗?