django celery AsyncResult AttributeError:“ DisabledBackend”对象没有属性“ _get_task_meta_for”

时间:2019-01-15 18:51:34

标签: django asynchronous celery

我正在使用django celery(4.2),我将从django视图中添加一些任务,我也想在一个单独的过程中使任务结果异步,但是当我尝试获取结果时,出现了一些错误。

我的完整步骤如下:

  1. django celery配置:

proj / settings / celery.py

import os
from celery import Celery
from django.conf import settings

os.environ.setdefault('DJANGO_SETTINGS_MODULE', 'Nuwa.settings.development')

app = Celery('Nuwa')

app.config_from_object('django.conf:settings', namespace='CELERY')

app.autodiscover_tasks()

proj / settings.py

CELERY_BROKER_URL = f'redis://{REDIS["HOST"]}:{REDIS["PORT"]}'
CELERY_RESULT_BACKEND = f'redis://{REDIS["HOST"]}:{REDIS["PORT"]}'
CELERY_ACCEPT_CONTENT = ['application/json']
CELERY_RESULT_SERIALIZER = 'json'
CELERY_TASK_SERIALIZER = 'json'

proj / settings / 初始化 .py

from .celery import app as celery_app

__all__ = ('celery_app', )
  1. 在一个django视图中调用celery任务:
result = port_scan.delay(target)
redis_conn.sadd(celery_task_set_key, result.task_id)

在此步骤中,我将task_id存储在redis集中以备将来使用。

  1. 获取任务结果
redis_conn = redis.Redis(host=REDIS_HOST, port=REDIS_PORT)
celery_tasks = redis_conn.smembers('celery-tasks')


for task_id in celery_tasks:
    print(task_id)
    celery_result = AsyncResult(task_id)
    print(celery_result.state)

当我尝试获取结果时,出现错误:

AttributeError: 'DisabledBackend' object has no attribute '_get_task_meta_for'

我通过Google搜索尝试了一些解决方案,因此它不起作用。

0 个答案:

没有答案