2019-12-24 21:33:02 +00:00
|
|
|
# Sample configuration file for Sidekiq.
|
|
|
|
# Options here can still be overridden by cmd line args.
|
|
|
|
# Place this file at config/sidekiq.yml and Sidekiq will
|
|
|
|
# pick it up automatically.
|
|
|
|
---
|
|
|
|
:verbose: false
|
2020-02-11 16:20:38 +00:00
|
|
|
:concurrency: 5
|
2019-12-24 21:33:02 +00:00
|
|
|
:timeout: 25
|
2021-12-15 12:01:16 +00:00
|
|
|
:max_retries: 3
|
2019-12-24 21:33:02 +00:00
|
|
|
|
|
|
|
# Sidekiq will run this file through ERB when reading it so you can
|
|
|
|
# even put in dynamic logic, like a host-specific queue.
|
|
|
|
# http://www.mikeperham.com/2013/11/13/advanced-sidekiq-host-specific-queues/
|
|
|
|
:queues:
|
2022-12-23 10:13:01 +00:00
|
|
|
- [async_database_migration, 1]
|
|
|
|
- [low, 2]
|
|
|
|
- [scheduled_jobs, 2]
|
|
|
|
- [webhooks, 2]
|
|
|
|
- [bots, 2]
|
|
|
|
- [active_storage_analysis, 2]
|
|
|
|
- [action_mailbox_incineration, 2]
|
|
|
|
- [active_storage_purge, 2]
|
|
|
|
- [integrations, 3]
|
|
|
|
- [default, 3]
|
|
|
|
- [mailers, 3]
|
|
|
|
- [medium, 4]
|
|
|
|
- [events, 4]
|
|
|
|
- [action_mailbox_routing, 4]
|
|
|
|
- [high, 6]
|
2020-04-30 14:50:26 +00:00
|
|
|
- [critical, 10]
|
2021-12-15 12:01:16 +00:00
|
|
|
|
2019-12-24 21:33:02 +00:00
|
|
|
# you can override concurrency based on environment
|
|
|
|
production:
|
2020-02-11 16:20:38 +00:00
|
|
|
:concurrency: 10
|
2020-02-11 16:57:03 +00:00
|
|
|
staging:
|
|
|
|
:concurrency: 5
|