曾经在配置文件里设置了超时限制, CELERYD_TASK_SOFT_TIME_LIMIT ,本来在 Linux 下是能用的。
当然,这里插一句,也曾经设置过 CELERY_TASK_RESULT_EXPIRES 和 CELERYD_TASK_TIME_LIMIT ,不过没起作用。
后来因为某些原因,程序迁移到了 windows 下,结果发现报错如下:
UserWarning: Soft timeouts are not supported: on this platform: It does not have the SIGUSR1 signal.&*
查了下文档:
http://docs.celeryproject.org/en/latest/userguide/workers.html#time-limits
发现:
"Time limits do not currently work on Windows and other platforms that do not support the SIGUSR1 signal."
另外看了下,在 @
app.task()这样的形式,去在括号里添加 timeout 和 time limit 之类的内容,据说也是不行的。
那么问题来了,难道 windows 下 celery 无法设置超时么?如果必须在 win 下运行的话,有其他解决办法么?