Change max tasks per celery worker to 500

This commit is contained in:
Kenneth Kehl
2024-11-25 07:49:04 -08:00
parent 186a5f26e9
commit c8f2f7c044

View File

@@ -166,7 +166,7 @@ class Config(object):
current_minute = (datetime.now().minute + 1) % 60
CELERY = {
"worker_max_tasks_per_child": 200,
"worker_max_tasks_per_child": 500,
"broker_url": REDIS_URL,
"broker_transport_options": {
"visibility_timeout": 310,