Update docker config and move some workers to different queues (#8345)

* Reorder docker-compose's sidekiq queues to match config/sidekiq.yml

* Make the ̀“mailers” queue higher priority than “pull”
This commit is contained in:
ThibG 2018-09-02 16:13:06 +02:00 committad av Eugen Rochko
förälder 7c12c7b124
incheckning fdda332e4d
2 ändrade filer med 2 tillägg och 2 borttagningar

Visa fil

@ -3,8 +3,8 @@
:queues:
- default
- push
- pull
- mailers
- pull
:schedule:
subscriptions_scheduler:
cron: '<%= Random.rand(0..59) %> <%= Random.rand(4..6) %> * * *'

Visa fil

@ -68,7 +68,7 @@ services:
image: tootsuite/mastodon
restart: always
env_file: .env.production
command: bundle exec sidekiq -q default -q mailers -q pull -q push
command: bundle exec sidekiq -q default -q push -q mailers -q pull
depends_on:
- db
- redis