Airflow BashOperator 找不到 Bash [英] Airflow BashOperator can't find Bash

查看:30
本文介绍了Airflow BashOperator 找不到 Bash的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我在 Centos 7 中使用 Airflow,使用 Python 3.7.

I'm using Airflow in Centos 7, using Python 3.7.

当我通过 BashOperator 运行 Bash 命令时,我遇到了以下问题:

When I run a Bash command through BashOperator, I run in to the following problem:

[2019-11-13 23:20:08,238] {taskinstance.py:1058} ERROR - [Errno 2] No such file or directory: 'bash': 'bash'
Traceback (most recent call last):
  File "/home/airflow/virtualenvs/airflow_env/lib/python3.7/site-packages/airflow/models/taskinstance.py", line 930, in _run_raw_task
    result = task_copy.execute(context=context)
  File "/home/airflow/virtualenvs/airflow_env/lib/python3.7/site-packages/airflow/operators/bash_operator.py", line 120, in execute
    preexec_fn=pre_exec)
  File "/home/airflow/python/Python-3.7.5/Lib/subprocess.py", line 800, in __init__
    restore_signals, start_new_session)
  File "/home/airflow/python/Python-3.7.5/Lib/subprocess.py", line 1551, in _execute_child
    raise child_exception_type(errno_num, err_msg, err_filename)
FileNotFoundError: [Errno 2] No such file or directory: 'bash': 'bash'

是否有我需要传递给 BashOperator 的变量,以便它知道查找 /bin/bash?在源代码中,似乎 BashOperator 使用 bash 打开了一个子进程;我需要修改它以使用 /bin/bash 吗?

Is there a variable I need to pass to BashOperator so it knows to look for /bin/bash? In the source code, it appears that BashOperator opens a subprocess using bash; do I need to modify it to use /bin/bash?

推荐答案

原来我不得不修改 systemctl 文件中的 PATH 变量.

It turns out I had to modify PATH variable in my systemctl file.

:/usr/local/bin:/bin:/usr/bin:/usr/local/sbin:/usr/sbin 添加到 PATH 解决了我的问题.

Adding :/usr/local/bin:/bin:/usr/bin:/usr/local/sbin:/usr/sbin to PATH fixed my problem.

我的设置是在 Centos 7 上使用通过 Systemctl 管理的 Airflow + virtualenv.

My setup is using Airflow + virtualenv managed through Systemctl on Centos 7.

气流调度器 systemctl 文件

Airflow scheduler systemctl file

[Unit]
Description=Airflow scheduler daemon
After=network.target postgresql.service mysql.service redis.service rabbitmq-server.service
Wants=postgresql.service mysql.service redis.service rabbitmq-server.service

[Service]
EnvironmentFile=/etc/sysconfig/airflow
Environment=VIRTUAL_ENV=/home/airflow/virtualenvs/airflow_env
Environment=PATH=/home/airflow/virtualenvs/airflow_env/bin:$PATH:/usr/local/bin:/bin:/usr/bin:/usr/local/sbin:/usr/sbin
User=airflow
Group=airflow
Type=simple
ExecStart=/home/airflow/virtualenvs/airflow_env/bin/airflow scheduler
Restart=always
RestartSec=5s
RuntimeDirectory=airflow
RuntimeDirectoryMode=0775

[Install]
WantedBy=multi-user.target

这篇关于Airflow BashOperator 找不到 Bash的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆