Re: airflow supervisord scripts do not work

2016-08-23 Thread Joe Schmid
Hi David, > But I want to use supervisor. And below is the terrible error I get We've been using supervisord successfully to start and manage Airflow processes for a while now. Below is our /etc/supervisord.conf file. The only quirk with our setup is that we use Python 3.5 to run Airflow, but Su

Re: airflow supervisord scripts do not work

2016-08-22 Thread Wang Yajun
Hi David The airflow need to `gunicorn` as a server. So you may be should check whether the `gunicorn` exists. if installed, may be you can add environment to supervisord script, such as : ```bash [program:airflow] environment=PATH=your/gunicorn/path:%(ENV_PATH)s ``` siddharth anand 于20

Re: airflow supervisord scripts do not work

2016-08-21 Thread siddharth anand
Hi David, Thanks for reporting this. I don't use supervisor, but the assumption `/usr/local/bin/airflow` seems like the problem. Please file a bug if you haven't already and document how you set up your environment and what your assumptions are. Feel free to propose a fix via a PR. I've checked my

airflow supervisord scripts do not work

2016-08-21 Thread David Montgomery
Hi, its great that one can start the webserver from the command line however using the upstart scripts do not work. this is in the https://github.com/apache/incubator-airflow/blob/master/scripts/upstart/airflow-webserver.conf exec usr/local/bin/airflow webserver But I want to use supervisor. A