]> git.openstreetmap.org Git - chef.git/commitdiff
Increase sleep interval when rails workers have nothing to do
authorTom Hughes <tom@compton.nu>
Fri, 26 Aug 2022 14:00:08 +0000 (15:00 +0100)
committerTom Hughes <tom@compton.nu>
Fri, 26 Aug 2022 14:00:29 +0000 (15:00 +0100)
cookbooks/dev/recipes/default.rb
cookbooks/web/recipes/rails.rb

index 70742e3c64aac6a6b6bbd6da9ffd9f5a35884cd7..3a12babae9d53062d15e6460d2ba4785a7c363e1 100644 (file)
@@ -230,6 +230,7 @@ if node[:postgresql][:clusters][:"14/main"]
   systemd_service "rails-jobs@" do
     description "Rails job queue runner"
     type "simple"
+    environment "RAILS_ENV" => "production", "SLEEP_DELAY" => "60"
     user "apis"
     working_directory "/srv/%i.apis.dev.openstreetmap.org/rails"
     exec_start "#{node[:ruby][:bundle]} exec rails jobs:work"
index 4cc91d2b44da24b1ce28b013990f7c2ecf5e9d54..e021f19251e045d141592bfe56ecfb7665dabddc 100644 (file)
@@ -152,7 +152,7 @@ end
 systemd_service "rails-jobs@" do
   description "Rails job queue runner"
   type "simple"
-  environment "RAILS_ENV" => "production", "QUEUE" => "%I"
+  environment "RAILS_ENV" => "production", "QUEUE" => "%I", "SLEEP_DELAY" => "60"
   user "rails"
   working_directory rails_directory
   exec_start "#{node[:ruby][:bundle]} exec rails jobs:work"