django-celery-beat не запускается внутри супервизора только вручную - PullRequest
0 голосов
/ 15 января 2019

Я установил Celery [sqs] и django-celery-beat в своем проекте Django 1.10. Я пытаюсь запустить их обоих (рабочий и ритм) , используя Supervisor on и экземпляр Elastic Beanstalk.

Конфигурация Supervisor создается динамически с помощью следующего скрипта:

#!/usr/bin/env bash

# get django environment variables
celeryenv=`cat /opt/python/current/env | tr '\n' ',' | sed 's/export //g' | sed 's/$PATH/%(ENV_PATH)s/g' | sed 's/$PYTHONPATH//g' | sed 's/$LD_LIBRARY_PATH//g' | sed 's/%/%%/g'`
celeryenv=${celeryenv%?}

# create celery beat config script
celerybeatconf="[program:celery-beat]
; Set full path to celery program if using virtualenv
command=/opt/python/run/venv/bin/celery beat -A phsite --loglevel=DEBUG --workdir=/tmp -S django --pidfile /tmp/celerybeat.pid
directory=/opt/python/current/app
user=nobody
numprocs=1
stdout_logfile=/var/log/celery-beat.log
stderr_logfile=/var/log/celery-beat.log
autostart=false
autorestart=true
startsecs=10

; Need to wait for currently executing tasks to finish at shutdown.
; Increase this if you have very long running tasks.
stopwaitsecs = 10

; When resorting to send SIGKILL to the program to terminate it
; send SIGKILL to its whole process group instead,
; taking care of its children as well.
killasgroup=true

; if rabbitmq is supervised, set its priority higher
; so it starts first
priority=998

environment=$celeryenv"

# create celery worker config script
celeryworkerconf="[program:celery-worker]
; Set full path to celery program if using virtualenv
command=/opt/python/run/venv/bin/celery worker -A phsite --loglevel=INFO
directory=/opt/python/current/app
user=nobody
numprocs=1
stdout_logfile=/var/log/celery-worker.log
stderr_logfile=/var/log/celery-worker.log
autostart=true
autorestart=true
startsecs=10

; Need to wait for currently executing tasks to finish at shutdown.
; Increase this if you have very long running tasks.
stopwaitsecs = 600

; When resorting to send SIGKILL to the program to terminate it
; send SIGKILL to its whole process group instead,
; taking care of its children as well.
killasgroup=true

; if rabbitmq is supervised, set its priority higher
; so it starts first
priority=999

environment=$celeryenv"

# create files for the scripts
echo "$celerybeatconf" | tee /opt/python/etc/celerybeat.conf
echo "$celeryworkerconf" | tee /opt/python/etc/celeryworker.conf

# add configuration script to supervisord conf (if not there already)
if ! grep -Fxq "[include]" /opt/python/etc/supervisord.conf
  then
  echo "[include]" | tee -a /opt/python/etc/supervisord.conf
  echo "files: celerybeat.conf celeryworker.conf" | tee -a /opt/python/etc/supervisord.conf
fi

# reread the supervisord config
/usr/local/bin/supervisorctl -c /opt/python/etc/supervisord.conf reread
# update supervisord in cache without restarting all services
/usr/local/bin/supervisorctl -c /opt/python/etc/supervisord.conf update

После чего запускается следующее отягощение:

container_commands:
  01_create_celery_beat_configuration_file:
    command: "cat .ebextensions/files/celery_configuration.sh > /opt/elasticbeanstalk/hooks/appdeploy/post/run_supervised_celeryd.sh && chmod 744 /opt/elasticbeanstalk/hooks/appdeploy/post/run_supervised_celeryd.sh && sed -i 's/\r$//' /opt/elasticbeanstalk/hooks/appdeploy/post/run_supervised_celeryd.sh"
  02_chmod_supervisor_sock:
    command: "chmod 777 /opt/python/run/supervisor.sock"
  03_create_logs:
    command: "touch /var/log/celery-beat.log /var/log/celery-worker.log"
  04_chmod_logs:
    command: "chmod 777 /var/log/celery-beat.log /var/log/celery-worker.log"
  05_start_celery_worker:
    command: "/usr/local/bin/supervisorctl -c /opt/python/etc/supervisord.conf restart celery-worker"
  06_start_celery_beat:
    command: "/usr/local/bin/supervisorctl -c /opt/python/etc/supervisord.conf start celery-beat"

При входе в Экземпляр и запуске

/usr/local/bin/supervisorctl -c /opt/python/etc/supervisord.conf status

celery-beat уже "не запущен" (с пустым файлом журнала), пока работает сельдерей. Самое странное, что если я запустлю его вручную (например,

/usr/local/bin/supervisorctl -c /opt/python/etc/supervisord.conf start celery-beat

Работает без ошибок.

Кто-нибудь знает, как его отладить? Почему он не загружается в eb_extension, пока загружается позже? Может быть, это связано с тем, что Django еще не запущен и я использую django_celery_beat.schedulers:DatabaseScheduler конфигурацию?

1 Ответ

0 голосов
/ 16 января 2019

Итак, простая причина в том, что сценарий оболочки, созданный в eb_extension:

container_commands:
  01_create_celery_beat_configuration_file:
    command: "cat .ebextensions/files/celery_configuration.sh > /opt/elasticbeanstalk/hooks/appdeploy/post/run_supervised_celeryd.sh && chmod 744 /opt/elasticbeanstalk/hooks/appdeploy/post/run_supervised_celeryd.sh && sed -i 's/\r$//' /opt/elasticbeanstalk/hooks/appdeploy/post/run_supervised_celeryd.sh"

Создается в каталоге appdeploy / post и поэтому запускается (после развертывания и в основном) после выполнения следующих команд. Команда start / restart ничего не делает, потому что сценарий оболочки еще не зарегистрировал эти службы. ?♂️

Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...