我有一个烧瓶应用myapp_A
,该应用使用celery运行一些异步任务。而且我已经将celery配置为作为守护进程运行。这是服务脚本。
/ etc / default / celery:
# Name of nodes to start
CELERYD_NODES="w1"
# Absolute or relative path to the 'celery' command:
CELERY_BIN="/var/www/myapp_A.com/public_html/venv/bin/celery"
# App instance to use
CELERY_APP="myapp_A.celery"
# Where to chdir at start.
CELERYD_CHDIR="/var/www/myapp_A.com/public_html/"
# Extra command-line arguments to the worker
CELERYD_OPTS="--time-limit=300 --concurrency=8"
# %n will be replaced with the first part of the nodename.
CELERYD_LOG_FILE="/var/log/celery/%n%I.log"
CELERYD_PID_FILE="/var/run/celery/%n.pid"
CELERYD_LOG_LEVEL="INFO"
# Workers should run as an unprivileged user.
CELERYD_USER="myuser"
CELERYD_GROUP="www-data"
# If enabled pid and log directories will be created if missing,
# and owned by the userid/group configured.
CELERY_CREATE_DIRS=1
/ etc / init.d / celeryd:
here中的Celery的通用名称。
现在我还有另一个Flask应用myapp_B
,它也需要芹菜来运行任务。
您可以使用单个守护进程来处理两个应用程序。一种方法是对不同的应用程序使用不同的队列名称这是我正在使用的配置
celery worker -A init_celery --quiet --loglevel=$WORKER_LOG_LEVEL --concurrency=4 --queues=que1,que2
然后在每个应用程序中指定队列名称。使用
CELERY_DEFAULT_QUEUE = 'que1'