]> git.openstreetmap.org Git - chef.git/blobdiff - roles/snap-02.rb
Increase replication slots
[chef.git] / roles / snap-02.rb
index 8d3a66f337c17c5b4accae5496e74aca42e1f957..68186bf0739b0405862dac38acd61dc62e0e6aa7 100644 (file)
@@ -11,9 +11,31 @@ default_attributes(
         :address => "10.0.0.4"
       }
     }
+  },
+  :postgresql => {
+    :settings => {
+      :defaults => {
+        :shared_buffers => "128GB",
+        :work_mem => "128MB",
+        :maintenance_work_mem => "2GB",
+        :effective_cache_size => "360GB",
+        :effective_io_concurrency => "256",
+        :random_page_cost => "1.1"
+      }
+    }
+  },
+  :sysctl => {
+    :postgres => {
+      :comment => "Increase shared memory for postgres",
+      :parameters => {
+        "kernel.shmmax" => 132 * 1024 * 1024 * 1024,
+        "kernel.shmall" => 132 * 1024 * 1024 * 1024 / 4096
+      }
+    }
   }
 )
 
 run_list(
-  "role[ucl]"
+  "role[ucl]",
+  "role[db-slave]"
 )