Files
fizzy/config/queue.yml
T
Mike Dalessio 5934280b2e Set queue.yml thread back to 3
because I can see we're backing up on Event::WebhookDispatchJob,
PushNotificationJob, and Turbo::Streams jobs, all of which are
doing networking.
2025-10-16 09:54:18 -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: 3
processes: <%= ENV.fetch("JOB_CONCURRENCY", Concurrent.physical_processor_count) %>
polling_interval: 0.1
development: *default
test: *default
beta: *default
staging: *default
production: *default