about summary refs log tree commit diff
path: root/config/sidekiq.yml
diff options
context:
space:
mode:
authorEugen Rochko <eugen@zeonfederated.com>2018-09-24 16:46:05 +0200
committerGitHub <noreply@github.com>2018-09-24 16:46:05 +0200
commit6465972caf77cb7008e1d751778f53ed2e6f698e (patch)
treed31a29f5910fae69e8ecf09959bfbc59cdc71007 /config/sidekiq.yml
parent9f6662fcc979d497b09fbd9b3ab06dd7538b92c9 (diff)
Add nginx and systemd templates (#8770)
So they can be copied during installation instead of looking
them up in the documentation

Make default sidekiq configuration use weighted queues

Remove deprecated docs directory
Diffstat (limited to 'config/sidekiq.yml')
-rw-r--r--config/sidekiq.yml8
1 files changed, 4 insertions, 4 deletions
diff --git a/config/sidekiq.yml b/config/sidekiq.yml
index 59dfeaf97..6a09bb6e9 100644
--- a/config/sidekiq.yml
+++ b/config/sidekiq.yml
@@ -1,10 +1,10 @@
 ---
 :concurrency: 5
 :queues:
-  - default
-  - push
-  - mailers
-  - pull
+  - [default, 6]
+  - [push, 4]
+  - [mailers, 2]
+  - [pull]
 :schedule:
   subscriptions_scheduler:
     cron: '<%= Random.rand(0..59) %> <%= Random.rand(4..6) %> * * *'