作者热门文章
- c - 在位数组中找到第一个零
- linux - Unix 显示有关匹配两种模式之一的文件的信息
- 正则表达式替换多个文件
- linux - 隐藏来自 xtrace 的命令
我刚开始使用 Airflow,谁能告诉我如何将参数传递给 PythonOperator,如下所示:
t5_send_notification = PythonOperator(
task_id='t5_send_notification',
provide_context=True,
python_callable=SendEmail,
op_kwargs=None,
#op_kwargs=(key1='value1', key2='value2'),
dag=dag,
)
def SendEmail(**kwargs):
msg = MIMEText("The pipeline for client1 is completed, please check.")
msg['Subject'] = "xxxx"
msg['From'] = "xxxx"
......
s = smtplib.SMTP('localhost')
s.send_message(msg)
s.quit()
我希望能够将一些参数传递给 t5_send_notification
的可调用函数,即 SendEmail
,理想情况下我想附上完整的日志和/或部分日志(基本上来自 kwargs)到要发送的电子邮件,猜测 t5_send_notification
是收集这些信息的地方。
非常感谢。
最佳答案
使用键从您的 python 可调用对象中的 kwargs 字典访问它们的值
def SendEmail(**kwargs):
print(kwargs['key1'])
print(kwargs['key2'])
msg = MIMEText("The pipeline for client1 is completed, please check.")
msg['Subject'] = "xxxx"
msg['From'] = "xxxx"
......
s = smtplib.SMTP('localhost')
s.send_message(msg)
s.quit()
t5_send_notification = PythonOperator(
task_id='t5_send_notification',
provide_context=True,
python_callable=SendEmail,
op_kwargs={'key1': 'value1', 'key2': 'value2'},
dag=dag,
)
关于python - 如何在 Airflow 中将参数传递给 PythonOperator,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54894418/
我是一名优秀的程序员,十分优秀!