我正在使用django celery(4.2),我将从django视图中添加一些任务,我也想在一个单独的过程中使任务结果异步,但是当我尝试获取结果时,出现了一些错误。
我的完整步骤如下:
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', )
result = port_scan.delay(target)
redis_conn.sadd(celery_task_set_key, result.task_id)
在此步骤中,我将task_id存储在redis集中以备将来使用。
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搜索尝试了一些解决方案,因此它不起作用。