Celery从同一个功能创建多个任务

时间:2013-04-28 11:05:47

标签: django celery django-celery

我想从同一个函数创建多个芹菜任务,它们将传递给任务装饰器的参数不同。假设我想在我的系统中为付费和免费帐户设置不同的超时。

我期望以下列方式应用任务装饰器可以解决问题:

def _update(x, y):
    ...    

update_free = task(soft_time_limit=300, time_limit=305)(_update)

update_paid = task(time_limit=1800)(_update)

但我在日志中看到update_paidupdate_free都没有注册为任务。而出于某种原因,_update被注册为任务。

我不知道为什么celery / django-celery这样做,对我来说似乎很模糊。 有谁知道如何解决这个问题? 感谢。

1 个答案:

答案 0 :(得分:2)

Celery的task装饰器在注册任务时使用修饰函数的名称,并且在定义函数时将此名称设置为“_update”:

>>> def _update(x, y):
...     pass
... 
>>> _update.__name__
  > '_update'
>>> update2 = _update
>>> update2.__name__
  > '_update'

您可以在装饰器中指定任务的名称:

update_free = task(name='update_free', soft_time_limit=300, time_limit=305)(_update)
update_paid = task(name='update_paid', time_limit=1800)(_update)