python芹菜max-tasks-per-child-setting默认值

前端之家收集整理的这篇文章主要介绍了python芹菜max-tasks-per-child-setting默认值前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我正在使用芹菜,我想使用 max-tasks-per-child-setting
因为一些芹菜过程获得了很高的内存使用率.

我想在更改之前找到此设置的默认值,但我无法找到该信息.

我看了here,但我不想把它设置为1,因为我不希望它重新启动每个任务.

解决方法

默认情况下没有限制

http://celery.readthedocs.org/en/latest/configuration.html#celeryd-max-tasks-per-child

您可以从defaults.py中查看所有默认配置值

https://github.com/celery/celery/blob/master/celery/app/defaults.py

>>> from celery import conf
>>> conf.CELERYD_MAX_TASKS_PER_CHILD is None
True
原文链接:https://www.f2er.com/python/185891.html

猜你在找的Python相关文章