python - 在 Django 中使用 Celery 设置结果后端 (rpc)

标签 python django celery

我正在尝试让我正在处理的项目的结果后端在我的本地机器上运行,但我遇到了问题。

目前,我正在尝试创建一个队列系统,以便我的实验室创建案例。这是为了防止使用重复的序列号。我已经在使用 Celery 进行打印,所以我想我会创建一个新的 Celery 队列并使用它来处理这个问题。前端还需要获取创建案例的结果,以显示创建的案例编号。

http://docs.celeryproject.org/en/latest/getting-started/first-steps-with-celery.html#rabbitmq

我正在按照上面的教程配置我的 Celery。以下是来源:

celeryconfig.py:

from kombu import Queue
CELERY_DEFAULT_QUEUE = 'celery'
CELERY_DEFAULT_EXCHANGE = 'celery'
CELERY_DEFAULT_EXCHANGE_TYPE = 'direct'
CELERY_RESULT_BACKEND = 'rpc://'
CELERY_RESULT_PERSISTENT = False

CELERY_QUEUES = (
    Queue('celery',    routing_key="celery"),
    Queue('case_creation',       routing_key='create.#')
)

CELERY_ROUTES = {
    'case.tasks.create_case': {
        'queue': 'case_creation',
        'routing_key': 'create.1'
    },
    'print.tasks.connect_and_serve': {
        'queue': 'celery',
        'routing_key': 'celery'
    }
}

celery .py:

import os

from celery import Celery

from django.conf import settings
os.environ.setdefault('DJANGO_SETTINGS_MODULE', 'proj.settings.local')

app = Celery('proj', broker='amqp://guest@localhost//')

app.config_from_object('proj.celeryconfig')
app.autodiscover_tasks(lambda: settings.INSTALLED_APPS)

任务.py:

import celery
from django.db import IntegrityError

from case.case_create import CaseCreate


@celery.task(bind=True)
def create_case(self, data, user, ip):
    try:
        acc = CaseCreate(data, user, ip)
        return acc.begin()
    except IntegrityError as e:
        self.retry(exc=e, countdown=2)

这是我调用上述任务的 View :

@require_authentication()
@requires_api_signature()
@csrf_exempt
@require_http_methods(['POST'])
def api_create_case(request):
    result = create_case.delay(json.loads(request.body.decode('utf-8')), request.user, get_ip_address(request))
    print(str(result))  # Prints the Task ID
    print(str(result.get(timeout=1)))  # Throws error
    return HttpResponse(json.dumps({'result': str(result)}), status=200)

我使用以下命令启动我的 celery 队列:

celery -A proj worker -Q case_creation -n case_worker -c 1

当我运行 celery worker 时,我确实看到结果显示在配置下:

 -------------- celery@case_worker v3.1.16 (Cipater)
---- **** -----
--- * ***  * -- Windows-8-6.2.9200
-- * - **** ---
- ** ---------- [config]
- ** ---------- .> app:         proj:0x32a2990
- ** ---------- .> transport:   amqp://guest:**@localhost:5672//
- ** ---------- .> results:     rpc://
- *** --- * --- .> concurrency: 1 (prefork)
-- ******* ----
--- ***** ----- [queues]
 -------------- .> case_creation    exchange=celery(direct) key=create.#

当我运行程序并提交新案例时,这是我收到的错误消息:

No result backend configured.  Please see the documentation for more information.

我已经尝试了所有可以在网上找到的东西。有没有人可以指出我正确的方向?我非常接近并且非常厌倦查看这段代码。

最佳答案

如果你想保留你的结果,试试这个 Keeping Results

app = Celery('proj', backend='amqp', broker='amqp://guest@localhost//')

编辑

Make sure the client is configured with the right backend.

If for some reason the client is configured to use a different backend than the worker, you will not be able to receive the result, so make sure the backend is correct by inspecting it:

试试看输出:

>>> result = task.delay(…)
>>> print(result.backend)

其他解决方案将代替

app = Celery('proj',
         backend='amqp',
         broker='amqp://',
         include=['proj.tasks'])

尝试:

app = Celery('proj',
             broker='amqp://',
             include=['proj.tasks'])
app.conf.update(
    CELERY_RESULT_BACKEND='amqp'
)

关于python - 在 Django 中使用 Celery 设置结果后端 (rpc),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39459290/

相关文章:

python - Conda 无法删除名为 "tensorflow"的环境

python - Virtualenv 和源代码版本控制

django - 如何在查询集中动态设置 Django 过滤器

python - 为什么这个 Django (1.6) 注释计数这么慢?

celery - 关于 celery 可扩展性的查询

django - 在 Ubuntu 中使用 systemd 配置 celery - 模块路径失败

django - 将 celery worker 作为守护进程启动

python - 如果某些较低级别索引不存在,则删除较高级别多重索引的所有行

python - 正在生成多少个查询?

python - 如何保存 Django ModelFormSet?