Celery get()在python shell中有效,但在Django视图中无效

时间:2018-07-29 21:05:33

标签: python django celery django-celery

我想用official demo Celery project for django检查code available here内部的Celery基本功能。

我的修改是demoapp / views.py(当然还有指向该视图的urls.py):

from __future__ import absolute_import, unicode_literals
from django.http import HttpResponse
from demoapp.tasks import add, mul, xsum


def home(request):
    return HttpResponse("Your output is: %s" % mul.delay(22,4).get(timeout=1) )

尽管运行Celery worker的终端显示已接收任务并显示正确的返回值,但始终会给出超时错误。

但是,如果我启动python shell python ./manage.py shell然后运行

from demoapp.tasks import add, mul, xsum
mul.delay(22,4).get(timeout=1)

我立即获得预期的结果。可能是什么问题?

Rabbitmq服务器正在运行,我使用Celery 4.2.1,django 2.0.6。

demoapp / tasks.py:

from __future__ import absolute_import, unicode_literals
from celery import shared_task


@shared_task
def add(x, y):
    return x + y


@shared_task
def mul(x, y):
    return x * y


@shared_task
def xsum(numbers):
    return sum(numbers)

proj / celery.py:

from __future__ import absolute_import, unicode_literals
import os
from celery import Celery

# set the default Django settings module for the 'celery' program.
os.environ.setdefault('DJANGO_SETTINGS_MODULE', 'proj.settings')

app = Celery('proj')

# Using a string here means the worker doesn't have to serialize
# the configuration object to child processes.
# - namespace='CELERY' means all celery-related configuration keys
#   should have a `CELERY_` prefix.
app.config_from_object('django.conf:settings', namespace='CELERY')

# Load task modules from all registered Django app configs.
app.autodiscover_tasks()


@app.task(bind=True)
def debug_task(self):
    print('Request: {0!r}'.format(self.request))

proj / settings.py

...
CELERY_BROKER_URL = 'amqp://guest:guest@localhost//'
CELERY_ACCEPT_CONTENT = ['json']
CELERY_RESULT_BACKEND = 'db+sqlite:///results.sqlite'
CELERY_TASK_SERIALIZER = 'json'
...

1 个答案:

答案 0 :(得分:0)

通过按the bottom of this page中所述安装结果后端解决了问题。