我已经在本地安装了气流,并且正在更改执行程序以运行并行任务为此,我更改了
1- 数据库到 Postgres 13.3
2- 在配置文件中 sql_alchemy_conn = postgresql+psycopg2://postgres:postgres@localhost/postgres
3-执行者=本地执行者
我已经使用气流数据库检查检查了数据库并且没有错误 - > INFO - 连接成功。气流数据库初始化->初始化完成
我收到的错误,我根本不使用 SQLite
1- {dag_processing.py:515} 警告 - 因为我们在使用 SQLite 时不能使用超过 1 个线程(parsing_processes = 2)。所以我们将并行度设置为 1。
2- 我从气流网络界面收到此错误
The scheduler does not appear to be running.
The DAGs list may not update, and new tasks will not be scheduled.
那么我应该做任何其他改变吗?