1
0
Fork 0
mirror of https://github.com/maybe-finance/maybe.git synced 2025-07-19 05:09:38 +02:00
Maybe/config/sidekiq.yml

8 lines
225 B
YAML
Raw Normal View History

concurrency: <%= ENV.fetch("RAILS_MAX_THREADS") { 3 } %>
queues:
- [scheduled, 10] # For cron-like jobs (e.g. "daily market data sync")
- [high_priority, 4]
- [medium_priority, 2]
- [low_priority, 1]
2025-03-28 13:29:56 -04:00
- [default, 1]