我正在阅读Apache Airflow教程https://github.com/hgrif/airflow-tutorial,并遇到了本节中的定义任务依赖项。
with DAG('airflow_tutorial_v01',
default_args=default_args,
schedule_interval='0 * * * *',
) as dag:
print_hello = BashOperator(task_id='print_hello',
bash_command='echo "hello"')
sleep = BashOperator(task_id='sleep',
bash_command='sleep 5')
print_world = PythonOperator(task_id='print_world',
python_callable=print_world)
print_hello >> sleep >> print_world
让我感到困惑的是
print_hello >> sleep >> print_world
>>在Python中是什么意思?我知道按位运算符,但是不能与此处的代码相关。
答案 0 :(得分:4)
气流将工作流表示为有向无环图。工作流是必须并行或顺序执行的任意数量的任务。 “ >>”是Airflow语法,用于将任务设置为另一个任务的下游。
深入研究孵化器气流项目仓库,app.intent('Default Welcome Intent', (conv) => {
conv.ask(new SignIn('To get your account details'));
});
目录中的models.py
定义了Airflow的许多高级抽象的行为。如果愿意,可以深入研究其他类,但是回答您问题的一个类是BaseOperator类。 Airflow中的所有运算符都继承自BaseOperator。 BaseOperator类的airflow
方法在设置任务或另一个任务的DAG的上下文中实现Python右移逻辑运算符。
请参阅实现here。