# Name of nodes to start # here we have a single node CELERYD_NODES="sender" # or we could have three nodes: #CELERYD_NODES="w1 w2 w3"
# Absolute or relative path to the 'celery' command: CELERY_BIN="/usr/bin/celery" #CELERY_BIN="/virtualenvs/def/bin/celery"
# App instance to use # comment out this line if you don't use an app CELERY_APP="send_core" # or fully qualified: #CELERY_APP="proj.tasks:app"
# How to call manage.py CELERYD_MULTI="multi"
# Extra command-line arguments to the worker CELERYD_OPTS="--beat --schedule=/var/www/celery/celerybeat-schedule --time-limit=300 --concurrency=8" #CELERYBEAT_OPTS="--schedule=/var/run/celery/celerybeat-schedule"
# - %n will be replaced with the first part of the nodename. # - %I will be replaced with the current child process index # and is important when using the prefork pool to avoid race conditions. CELERYD_PID_FILE="/var/www/celery/%n.pid" CELERYD_LOG_FILE="/var/log/celery/%n%I.log" CELERYD_LOG_LEVEL="INFO"