我正在尝试在我的本地计算机上为我正在处理的项目获取结果后端,但我遇到了一个问题。
目前我正在尝试创建一个队列系统,以便我的实验室创建案例。这是为了防止使用重复的序列号。我已经在使用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)
tasks.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)
以下是调用上述任务的视图:
@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 -A proj worker -Q case_creation -n case_worker -c 1
当我运行芹菜工作者时,我确实看到结果显示在config:
下 -------------- 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.
我尝试过每一件我能在网上找到的东西。有没有人可以指出我正确的方向?我非常亲密,非常厌倦了看这段代码。
答案 0 :(得分:4)
如果您想保留结果,请尝试Keeping Results
app = Celery('proj', backend='amqp', broker='amqp://guest@localhost//')
确保客户端配置了正确的后端。
如果由于某种原因客户端被配置为使用与工作人员不同的后端,您将无法收到结果,因此请检查后端是否正确:
尝试此操作以查看输出:
>>> 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'
)