6
我正在使用芹菜,我想使用max-tasks-per-child-setting ,因爲一些芹菜過程得到高內存使用量。python celery max-tasks-per-child-setting default
我試圖找到這個設置的默認值之前,我改變,但我無法找到該信息。
我看了here但我不想將它設置爲1
因爲我不想讓它重新啓動每個任務。
我正在使用芹菜,我想使用max-tasks-per-child-setting ,因爲一些芹菜過程得到高內存使用量。python celery max-tasks-per-child-setting default
我試圖找到這個設置的默認值之前,我改變,但我無法找到該信息。
我看了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
檢查了所有的默認配置值