From b9a616b083cdc601ca6314b594f4282eb4287835 Mon Sep 17 00:00:00 2001 From: Mike Dalessio Date: Sat, 11 Oct 2025 11:29:21 -0400 Subject: [PATCH] Increase the number of job workers to match CPUs JOB_CONCURRENCY would still override this number. --- config/queue.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/config/queue.yml b/config/queue.yml index 8b04d23f8..aaed725e0 100644 --- a/config/queue.yml +++ b/config/queue.yml @@ -4,8 +4,8 @@ default: &default batch_size: 500 workers: - queues: [ "default", "solid_queue_recurring", "backend", "webhooks" ] - threads: 3 - processes: <%= ENV.fetch("JOB_CONCURRENCY", 1) %> + threads: 1 + processes: <%= ENV.fetch("JOB_CONCURRENCY", Concurrent.physical_processor_count) %> polling_interval: 0.1 development: *default