add solid queue

This commit is contained in:
2025-06-22 09:17:18 +02:00
parent 7c14e469c9
commit b368a750fe
13 changed files with 257 additions and 14 deletions

18
config/queue.yml Normal file
View File

@@ -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