]> git.openstreetmap.org Git - chef.git/blobdiff - roles/nominatim.rb
Add an alert for the mail queue
[chef.git] / roles / nominatim.rb
index ac76db74465acce5e16fac01a89f0afd671c5e6d..8981e500ae71aa036bf960222c6582d777716807 100644 (file)
@@ -5,29 +5,17 @@ default_attributes(
   :accounts => {
     :users => {
       :lonvia => { :status => :administrator },
-      :twain => { :status => :administrator },
       :nominatim => {
         :status => :role,
-        :members => [:lonvia, :tomh, :twain]
+        :members => [:lonvia, :tomh]
       }
     }
   },
-  :apache => {
-    :mpm => "event",
-    :timeout => 60,
-    :keepalive => false,
-    :reqtimeout => true,
-    :event => {
-      :server_limit => 32,
-      :max_request_workers => 1600,
-      :threads_per_child => 50,
-      :min_spare_threads => 125,
-      :max_spare_threads => 925
+  :networking => {
+    :firewall => {
+      :http_rate_limit => "s:2/sec:15"
     }
   },
-  :apt => {
-    :sources => ["postgresql"]
-  },
   :postgresql => {
     :settings => {
       :defaults => {
@@ -36,8 +24,10 @@ default_attributes(
         :checkpoint_segments => "32",
         :checkpoint_timeout => "10min",
         :checkpoint_completion_target => "0.9",
+        :jit => "off",
         :shared_buffers => "2GB",
-        :autovacuum_max_workers => "1"
+        :autovacuum_max_workers => "1",
+        :max_parallel_workers_per_gather => "0"
       }
     }
   },
@@ -71,7 +61,7 @@ default_attributes(
     :network_conntrack_max => {
       :comment => "Increase max number of connections tracked",
       :parameters => {
-        "net.netfilter.nf_conntrack_max" => "131072"
+        "net.netfilter.nf_conntrack_max" => "196608"
       }
     }
   }