Files
fizzy/config/queue.yml
T
Mike Dalessio b9a616b083 Increase the number of job workers to match CPUs
JOB_CONCURRENCY would still override this number.
2025-10-11 11:29:21 -04:00

16 lines
395 B
YAML

default: &default
dispatchers:
- polling_interval: 1
batch_size: 500
workers:
- queues: [ "default", "solid_queue_recurring", "backend", "webhooks" ]
threads: 1
processes: <%= ENV.fetch("JOB_CONCURRENCY", Concurrent.physical_processor_count) %>
polling_interval: 0.1
development: *default
test: *default
beta: *default
staging: *default
production: *default