芹菜饲养不正确的配置异常

时间:2016-11-24 10:56:39

标签: python celery

我正在Celery doc中测试下面的案例,但是提出了ImproperlyConfigured异常。 http://docs.celeryproject.org/en/master/userguide/calling.html#id3

Traceback (most recent call last):   
File "test.py", line 8, in <module> print(r.get(on_message=on_raw_message, propagate=False))   
File "/usr/local/python2.7/lib/python2.7/site-packages/celery/result.py", line 189, in get on_message=on_message,   
File "/usr/local/python2.7/lib/python2.7/site-packages/celery/backends/base.py", line 460, in wait_for_pending 'Backend does not support on_message callback')  
celery.exceptions.ImproperlyConfigured: Backend does not support on_message callback

测试代码是:

from celery_test.agent import hello
from celery_test.celery import app

def on_raw_message(body):
    print(body)

r = hello.apply_async(args=[122,34], queue='machine1', routing_key='machine1')
print(r.get(on_message=on_raw_message, propagate=False))

芹菜产量-A celery_test报告

[root@zm03 script]# celery -A celery_test report

software -> celery:4.0.0 (latentcall) kombu:4.0.0 py:2.7.9
            billiard:3.5.0.2 py-amqp:2.1.1
platform -> system:Linux arch:64bit, ELF imp:CPython
loader   -> celery.loaders.app.AppLoader
settings -> transport:amqp results:amqp://guest@192.168.1.201//

CELERY_DEFAULT_EXCHANGE_TYPE: 'direct'
CELERY_RESULT_SERIALIZER: 'json'
timedelta: <type 'datetime.timedelta'>
Exchange: <class 'kombu.entity.Exchange'>
CELERY_INCLUDE: ['celery_test.agent']
absolute_import: _Feature((2, 5, 0, 'alpha', 1), (3, 0, 0, 'alpha', 0), 16384)
Queue: <class 'kombu.entity.Queue'>
CELERY_TASK_RESULT_EXPIRES: 3600
CELERT_QUEUES:
    (<unbound Queue machine1 -> 'agent' -> machine1>,
 <unbound Queue machine2 -> 'agent' -> machine2>)
CELERY_ACCEPT_CONTENT: ['json']
CELERY_TASK_SERIALIZER: 'json'
BROKER_URL: u'amqp://guest:********@192.168.1.201:5672//'
CELERY_RESULT_BACKEND: u'amqp://guest@192.168.1.201//'
CELERY_DEFAULT_EXCHANGE: 'agent'

2 个答案:

答案 0 :(得分:0)

显然芹菜中似乎有一些虫子。由于on_message应该与rabbitmq后端一起使用。

解决方法:移至结果后端的redis

在以下拉取请求[confirmation],

期间推出

https://github.com/celery/celery/pull/3477/files

我已经为您面临的错误创建了问题,

https://github.com/celery/celery/issues/3625

答案 1 :(得分:0)

rabbitmq 结果后端在 celery 5.x 中被删除,因为它在 v4.x 中被弃用。