Will Thompson
7554b0c105
Sending HUP to the parent of a family of celery workers causes the parent to re-exec itself, spawning a new set of child workers without terminating the old ones. So instead we send TERM to the parent on 'reload', which cleans up the children, and rely on systemd/upstart to respawn the whole family.
31 lines
822 B
Text
31 lines
822 B
Text
# pandora background tasks daemon
|
|
#
|
|
|
|
description "pandora background tasks daemon"
|
|
|
|
start on runlevel [2345]
|
|
stop on runlevel [!2345]
|
|
|
|
respawn
|
|
reload signal TERM
|
|
|
|
env VENV=/srv/pandora
|
|
env USER=pandora
|
|
env HOME=/home/pandora
|
|
env LANG=en_US.UTF-8
|
|
|
|
pre-start script
|
|
test -e /var/log/pandora || (mkdir -p /var/log/pandora && chown $USER:$USER /var/log/pandora)
|
|
test -e /var/run/pandora || (mkdir -p /var/run/pandora && chown $USER:$USER /var/run/pandora)
|
|
end script
|
|
|
|
exec start-stop-daemon \
|
|
--start -c $USER -d $VENV/pandora \
|
|
--pidfile /var/run/pandora/pandora-tasks.pid \
|
|
--exec $VENV/bin/python -- \
|
|
$VENV/pandora/manage.py celeryd \
|
|
-Q default,celery \
|
|
-n pandora-default \
|
|
--pidfile /var/run/pandora/pandora-tasks.pid \
|
|
-f /var/log/pandora/pandora-tasks.log \
|
|
-l INFO
|