Created
June 11, 2016 10:23
-
-
Save daleobrien/43f8ae5336a577fee036a0cb11f3f28e to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Start w?? first (general workers) and b?? (beat workers) last | |
# CELERYD_NODES="w01 w02 w03 w04 w05 w06 w07 w08 w09 w10 w11 w12 w13 w14 w15 w16 w17 w18 w19 w20 w21 w22 w23 w24 w25 w26 w27 w28 w29 w30 w31 w31 w32 w33 w34 w35 w36 w37 w39 w40 w41 w42 w43 w44 w45 w46 w47 w48 w49 w50 b01 b02 b03 b04 b05 b06 b07 b08 b09 b10 b11 b12 b13 b14 b15 b16 b17 b18 b19 b20" | |
CELERYD_NODES="w01 w02 b01 b02 b03 b04 b05 b06 b07 b08 b09 b10 b11 b12 b13 b14 b15 b16" | |
# Where to chdir at start. (CATMAID Django project dir.) | |
CELERYD_CHDIR="/home/www/.virtualenvs/insight_env/core" | |
# Python interpreter from environment. (in CATMAID Django dir) | |
ENV_PYTHON="/home/www/.virtualenvs/insight_env/bin/python" | |
# How to call "manage.py celeryd_multi" | |
CELERYD_MULTI="$ENV_PYTHON manage.py celeryd_multi" | |
# How to call "manage.py celeryctl" | |
CELERYCTL="$ENV_PYTHON manage.py celeryctl" | |
# Extra arguments to celeryd | |
CELERYD_OPTS="--app=celery_app -l info --nosplash -Ofair" | |
# Name of the celery config module. | |
CELERY_CONFIG_MODULE="celeryconfig" | |
# %n will be replaced with the nodename. | |
CELERYD_LOG_FILE="/mnt/log/celery/%n.log" | |
CELERYD_PID_FILE="/var/run/celery/%n.pid" | |
# Workers should run as an unprivileged user. | |
CELERYD_USER="celery" | |
CELERYD_GROUP="www" | |
# Name of the projects settings module. | |
export DJANGO_SETTINGS_MODULE="settings" | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment