eBooru/config/sidekiq.yml

23 lines
548 B
YAML
Raw Normal View History

---
:verbose: false
:concurrency: 5
# Set timeout to 8 on Heroku, longer if you manage your own systems.
:timeout: 30
# 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:
2020-08-28 00:31:42 -04:00
- [video, 1]
- [low_prio, 1]
- [tags, 2]
- [default, 3]
- [high_prio, 5]
# you can override concurrency based on environment
production:
2019-10-18 22:14:34 -04:00
:concurrency: 15
staging:
2019-10-18 22:14:34 -04:00
:concurrency: 5