gpt4 book ai didi

python - 作为守护进程运行 Airflow 调度程序的问题

转载 作者:太空狗 更新时间:2023-10-29 17:57:04 24 4
gpt4 key购买 nike

我有一个使用 LocalExecutor 运行 airflow 1.8.0 的 EC2 实例。根据文档,我预计以下两个命令之一会在守护进程模式下启动调度程序:

airflow scheduler --daemon --num_runs=20

Airflow 调度程序 --daemon=True --num_runs=5

但事实并非如此。第一个命令似乎可以正常工作,但它只是在返回终端之前返回以下输出,而不产生任何后台任务:

[2017-09-28 18:15:02,794] {__init__.py:57} INFO - Using executor LocalExecutor
[2017-09-28 18:15:03,064] {driver.py:120} INFO - Generating grammar tables from /usr/lib/python3.5/lib2to3/Grammar.txt
[2017-09-28 18:15:03,203] {driver.py:120} INFO - Generating grammar tables from /usr/lib/python3.5/lib2to3/PatternGrammar.txt

第二个命令产生错误:

airflow scheduler: error: argument -D/--daemon: ignored explicit argument 'True'

这很奇怪,因为根据 docs --daemon=True 应该是 airflow scheduler 调用的有效参数。

再深入一点,我找到了 this StackOverflow post ,其中一个响应建议实现 systemd,根据可用代码 this repo 将 Airflow 调度程序作为后台进程处理。 .

我对脚本的轻微编辑改编作为以下要点发布。我在 Ubuntu 16.04.3 中使用普通的 m4.xlarge EC2 实例:

从那里我打电话:

sudo systemctl enable airflow-scheduler
sudo systemctl start airflow-scheduler

什么也没有发生。虽然我在这个实例上运行了更复杂的 DAG,I am using this dummy case创建一个简单的测试,它也可以作为一个监听器,让我知道调度程序何时按计划运行。

我一直在使用 journalctl -f 进行调试。以下是调度程序进程的几行输出。没有明显的问题,但我的任务没有执行,也没有为测试 DAG 生成任何日志来帮助我放大错误。问题出在这里吗?

Sep 28 18:39:30 ip-172-31-15-209 airflow[20603]: [2017-09-28 18:39:30,965] {dag_processing.py:627} INFO - Started a process (PID: 21822) to generate tasks for /home/ubuntu/airflow/dags/scheduler_test_dag.py - logging into /home/ubuntu/airflow/logs/scheduler/2017-09-28/scheduler_test_dag.py.log
Sep 28 18:39:31 ip-172-31-15-209 airflow[20603]: [2017-09-28 18:39:31,016] {jobs.py:1002} INFO - No tasks to send to the executor
Sep 28 18:39:31 ip-172-31-15-209 airflow[20603]: [2017-09-28 18:39:31,020] {jobs.py:1440} INFO - Heartbeating the executor
Sep 28 18:39:32 ip-172-31-15-209 airflow[20603]: [2017-09-28 18:39:32,022] {jobs.py:1404} INFO - Heartbeating the process manager
Sep 28 18:39:32 ip-172-31-15-209 airflow[20603]: [2017-09-28 18:39:32,023] {jobs.py:1440} INFO - Heartbeating the executor
Sep 28 18:39:33 ip-172-31-15-209 airflow[20603]: [2017-09-28 18:39:33,024] {jobs.py:1404} INFO - Heartbeating the process manager
Sep 28 18:39:33 ip-172-31-15-209 airflow[20603]: [2017-09-28 18:39:33,025] {dag_processing.py:559} INFO - Processor for /home/ubuntu/airflow/dags/capone_dash_dag.py finished
Sep 28 18:39:33 ip-172-31-15-209 airflow[20603]: [2017-09-28 18:39:33,026] {dag_processing.py:559} INFO - Processor for /home/ubuntu/airflow/dags/scheduler_test_dag.py finished

当我手动运行 airflow scheduler 时,一切正常。由于我的测试 DAG 的开始日期是 9 月 9 日,从那以后它每分钟都在回填,生成一个运行时间代码。但是,当我使用 systemd 将调度程序作为守护程序运行时,它完全安静,没有明显的错误源。

有什么想法吗?

最佳答案

文档可能已过时?

我通常按如下方式启动 Airflow

airflow kerberos -D
airflow scheduler -D
airflow webserver -D

这是 airflow webeserver --help 输出(来自版本 1.8):

-D, --daemon Daemonize instead of running in the foreground

注意那里不可能有 bool 标志。必须修复文档。

airflow scheduler -D 失败时的快速说明:

这包括在评论中,但在这里似乎值得一提。当您运行 Airflow 调度程序时,它将创建文件 $AIRFLOW_HOME/airflow-scheduler.pid。如果您尝试重新运行 Airflow 调度程序守护进程,这几乎肯定会生成文件 $AIRFLOW_HOME/airflow-scheduler.err 它将告诉您 lockfile.AlreadyLocked:/home/ubuntu/airflow/airflow-scheduler.pid 已被锁定。如果您的调度程序守护程序确实无法使用并且您发现自己需要重新启动,请执行以下命令:

sudo rm $AIRFLOW_HOME airflow-scheduler.err  airflow-scheduler.pid
airflow scheduler -D

这让我的日程安排回到正轨。

关于python - 作为守护进程运行 Airflow 调度程序的问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46476246/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com