aboutsummaryrefslogtreecommitdiffstats
path: root/config/queue.yml
diff options
context:
space:
mode:
Diffstat (limited to 'config/queue.yml')
-rw-r--r--config/queue.yml18
1 files changed, 18 insertions, 0 deletions
diff --git a/config/queue.yml b/config/queue.yml
new file mode 100644
index 0000000..9eace59
--- /dev/null
+++ b/config/queue.yml
@@ -0,0 +1,18 @@
+default: &default
+ dispatchers:
+ - polling_interval: 1
+ batch_size: 500
+ workers:
+ - queues: "*"
+ threads: 3
+ processes: <%= ENV.fetch("JOB_CONCURRENCY", 1) %>
+ polling_interval: 0.1
+
+development:
+ <<: *default
+
+test:
+ <<: *default
+
+production:
+ <<: *default