我试图通过查询每个任务状态来获取任务链的进度。但是当通过它的 id 检索链时,我得到了一些行为不同的对象。
在任务.py
from celery import Celery
celery = Celery('tasks')
celery.config_from_object('celeryconfig')
def unpack_chain(nodes):
while nodes.parent:
yield nodes.parent
nodes = nodes.parent
yield nodes
@celery.task
def add(num, num2):
return num + num2
从 ipython 查询时...
In [43]: from celery import chain
In [44]: from tasks import celery, add, unpack_chain
In [45]: c = chain(add.s(3,3), add.s(10).set(countdown=100))
In [46]: m = c.apply_async()
In [47]: a = celery.AsyncResult(m.id)
In [48]: a == m
Out[48]: True
In [49]: a.id == m.id
Out[49]: True
In [50]: [t.status for t in list(unpack_chain(a))]
Out[50]: ['PENDING']
In [51]: [t.status for t in list(unpack_chain(m))]
Out[51]: ['PENDING', 'SUCCESS']
在 Redis 下使用 Python 2.7.3 和 Celery 3.0.19。
正如您在50 和 51中看到的那样,返回的值celery.AsyncResult
与原始链不同。
如何通过链 id 获取原始链任务列表?