Airflow2.4.3 - 修改执行器 作者:马育民 • 2023-04-09 20:31 • 阅读:10056 # 说明 登录 Airflow 网页后,提示 不推荐使用 顺序执行器 `SequentialExecutor` ,如下: [![](/upload/0/0/1IX5HuRuTtKI.png)](/upload/0/0/1IX5HuRuTtKI.png) 推荐使用 本地执行器 `LocalExecutor` # 修改 ``` (airflow) [root@hadoop3 ~]# vim airflow/airflow.cfg ``` 将下面内容: ``` executor = SequentialExecutor ``` 修改为下面内容: ``` executor = LocalExecutor ``` # 重新启动 ``` [root@hadoop3 bin]# ./airflow.sh stop ``` ``` [root@hadoop3 bin]# ./airflow.sh start ``` 再次访问 web 网页,没有本文开头的提示信息,说明配置成功 原文出处:http://malaoshi.top/show_1IX5HubnSDiQ.html