本文介绍了在Celery中检索队列中的任务列表的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

如何检索队列中尚未处理的任务列表?

How can I retrieve a list of tasks in a queue that are yet to be processed?

推荐答案

编辑:请参见其他答案以获取队列中的任务列表。

您应在此处查看:

基本上是这样:

from celery.app.control import Inspect

# Inspect all nodes.
i = Inspect()

# Show the items that have an ETA or are scheduled for later processing
i.scheduled()

# Show tasks that are currently active.
i.active()

# Show tasks that have been claimed by workers
i.reserved()

取决于您想要的东西

这篇关于在Celery中检索队列中的任务列表的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

09-23 19:13