Increase the number of job workers to match CPUs

JOB_CONCURRENCY would still override this number.
This commit is contained in:
Mike Dalessio
2025-10-11 11:29:21 -04:00
parent b056bd61dc
commit b9a616b083
+2 -2
View File
@@ -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