Celery 和 Gunicorn 工人之间的区别?

Nim*_*imo 5 django nginx worker gunicorn

我正在部署一个带有gunicorn、nginx 和supervisor 的Django 应用程序。

我目前使用 celery 运行后台工作人员:

$ python manage.py celery worker
Run Code Online (Sandbox Code Playgroud)

这是我的gunicorn配置:

#!/bin/bash

NAME="hello_app"                                  # Name of the application
DJANGODIR=/webapps/hello_django/hello             # Django project directory
SOCKFILE=/webapps/hello_django/run/gunicorn.sock  # we will communicte using this unix socket
USER=hello                                        # the user to run as
GROUP=webapps                                     # the group to run as
NUM_WORKERS=3                                     # how many worker processes should Gunicorn spawn
DJANGO_SETTINGS_MODULE=hello.settings             # which settings file should Django use
DJANGO_WSGI_MODULE=hello.wsgi                     # WSGI module name

echo "Starting $NAME as `whoami`"

# Activate the virtual environment
cd $DJANGODIR
source ../bin/activate
export DJANGO_SETTINGS_MODULE=$DJANGO_SETTINGS_MODULE
export PYTHONPATH=$DJANGODIR:$PYTHONPATH

# Create the run directory if it doesn't exist
RUNDIR=$(dirname $SOCKFILE)
test -d $RUNDIR || mkdir -p $RUNDIR

# Start your Django Unicorn
# Programs meant to be run under supervisor should not daemonize themselves (do not use --daemon)
exec ../bin/gunicorn ${DJANGO_WSGI_MODULE}:application \
  --name $NAME \
  --workers $NUM_WORKERS \
  --user=$USER --group=$GROUP \
  --log-level=debug \
  --bind=unix:$SOCKFILE
Run Code Online (Sandbox Code Playgroud)

有没有办法在gunicorn下运行celery后台工作者?它甚至指的是同一件事吗?

Rya*_*rom 4

芹菜和gunicorn是不同的东西。Celery 是一个异步任务管理器,gunicorn 是一个 Web 服务器。您可以将它们作为后台任务运行(celeryd来守护 celery ),只需将您的 django 项目提供给它们即可。

运行它们的常见方法是使用supervisor,这将确保它们在您从服务器注销后保持运行。celery github 存储库有一些将 celery 与supervisor一起使用的示例脚本