7

我想优雅地退出芹菜任务(即不是通过调用revoke(celery_task_id, terminate=True))。我想我会向设置标志的任务发送一条消息,以便任务函数可以返回。与任务沟通的最佳方式是什么?

4

2 回答 2

11

您也可以使用AbortableTask. 我认为这是优雅地停止任务的最佳方式。

http://docs.celeryproject.org/en/latest/reference/celery.contrib.abortable.html

from celery.contrib.abortable import AbortableTask
from proj.celery import app

@app.task(bind=True, base=AbortableTask)
def abortable_task(self):
    while not self.is_aborted():
       print 'I am running'

    print 'I was aborted!'

如果您将 id 任务保存在某个地方,您可以随时调用它。

from celery.contrib.abortable import AbortableAsyncResult

abortable_task = AbortableAsyncResult(task_id)
abortable_task.abort()
于 2016-05-09T13:46:02.110 回答
10

为此使用信号。Celery'srevoke 正确的选择;它默认使用 SIGTERM,但如果您愿意,可以使用参数指定另一个。signal

只需在您的任务(使用signal模块)中为其设置一个信号处理程序,即可优雅地终止任务。

于 2013-05-11T04:41:02.890 回答