slack
安装slack组件
$ pip install apache-airflow[slack]
slack是团队协作工具
t1 = BashOperator(
task_id='print_date',
bash_command='date',
dag=dag)
text = '{{ ds }} [%s] has been done' % (dag.dag_id)
t2 = SlackAPIPostOperator(
task_id='post_slack',
token='xoxp-your-key-here',
channel='#random',
username='airflow',
text=text,
dag=dag
)
t1 >> t2 # t2.set_upstream(t1)