From 23ce7ca641ed25e8a5bc2c14d744d5d2e9639fa0 Mon Sep 17 00:00:00 2001 From: carolyncole <1599081+carolyncole@users.noreply.github.com> Date: Thu, 24 Oct 2024 09:44:47 -0400 Subject: [PATCH] Upping the number of items that can be in the sidekiq queue (#1979) We had more than 20k and that was normal for a large work --- config/initializers/health_monitor.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config/initializers/health_monitor.rb b/config/initializers/health_monitor.rb index 1b68d80dc..bd0ace720 100644 --- a/config/initializers/health_monitor.rb +++ b/config/initializers/health_monitor.rb @@ -8,7 +8,7 @@ config.sidekiq.configure do |sidekiq_config| sidekiq_config.latency = 6.hours - sidekiq_config.queue_size = 10_000 + sidekiq_config.queue_size = 20_000 sidekiq_config.maximum_amount_of_retries = 100 sidekiq_config.critical = false end