Celery:确保为每个轮询迭代提交事务

时间:2013-07-09 16:17:52

标签: celery django-celery

我正在使用django-celery并设置了所以我可以从交互式shell调用任务,任务完成(由芹菜日志证明),我在celeryd输出中看到结果。

但是,我似乎无法在启动任务的shell中获得任务的结果:

>>> from mymodule.tasks import testTask
>>> res = testTask.delay()
>>> testTask.ready()
False

@task
def testTask():
logger.info('LOGGER: start task')
time.sleep(10)
logger.info('LOGGER: stop task')
return 5 

我假设这是由于我有时会得到以下错误:

TxIsolationWarning: Polling results with transaction isolation level repeatable-read within the same transaction may give outdated results. Be sure to commit the transaction for each poll iteration.

我的问题,我如何提交交易以及这在哪里完成?另外,这里有什么问题?当Django锁定桌子时,Celery试图从mysql访问信息?

提前致谢,

1 个答案:

答案 0 :(得分:2)

如果您使用MySQL作为代理,请检查事务隔离级别。

http://docs.celeryproject.org/en/latest/faq.html#mysql-is-throwing-deadlock-errors-what-can-i-do