From fd947aadea493812e02a468b833b9e9593aef1dc Mon Sep 17 00:00:00 2001 From: "Richard Kuo (Danswer)" Date: Mon, 3 Feb 2025 00:32:23 -0800 Subject: [PATCH] slow down to 8 again --- backend/onyx/background/celery/tasks/beat_schedule.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/backend/onyx/background/celery/tasks/beat_schedule.py b/backend/onyx/background/celery/tasks/beat_schedule.py index 6db15cd832ee..c2e1f163f333 100644 --- a/backend/onyx/background/celery/tasks/beat_schedule.py +++ b/backend/onyx/background/celery/tasks/beat_schedule.py @@ -18,7 +18,7 @@ BEAT_EXPIRES_DEFAULT = 15 * 60 # 15 minutes (in seconds) # hack to slow down task dispatch in the cloud until # we have a better implementation (backpressure, etc) -CLOUD_BEAT_SCHEDULE_MULTIPLIER = 4 +CLOUD_BEAT_SCHEDULE_MULTIPLIER = 8 # tasks that only run in the cloud # the name attribute must start with ONYX_CLOUD_CELERY_TASK_PREFIX = "cloud" to be filtered