From b7cedb673ef0aca93079e6f1240e06b1a1b25f74 Mon Sep 17 00:00:00 2001 From: Vishnu Narayanan Date: Mon, 25 Nov 2024 17:43:24 +0530 Subject: [PATCH] chore: split queues between workers --- config/sidekiq/default.yml | 7 +------ config/sidekiq/quarantine.yml | 6 +++++- 2 files changed, 6 insertions(+), 7 deletions(-) diff --git a/config/sidekiq/default.yml b/config/sidekiq/default.yml index efff195b3..a2d9177a2 100644 --- a/config/sidekiq/default.yml +++ b/config/sidekiq/default.yml @@ -18,14 +18,9 @@ - critical - high - medium - - default - - mailers + - default - action_mailbox_routing - low - - async_database_migration - - active_storage_analysis - - active_storage_purge - - action_mailbox_incineration # you can override concurrency based on environment production: diff --git a/config/sidekiq/quarantine.yml b/config/sidekiq/quarantine.yml index 88993999b..d38be6d78 100644 --- a/config/sidekiq/quarantine.yml +++ b/config/sidekiq/quarantine.yml @@ -16,4 +16,8 @@ # if there are no jobs in higher ranking queues. :queues: - scheduled_jobs - \ No newline at end of file + - mailers + - async_database_migration + - active_storage_analysis + - active_storage_purge + - action_mailbox_incineration \ No newline at end of file