]> git.openstreetmap.org Git - chef.git/blobdiff - roles/snap-01.rb
Add role for firnen
[chef.git] / roles / snap-01.rb
index 00b8d4b2a919eca21e0fd19bb88a569c66b7d9f4..c79f141456eae5389a8be562955833dd8b86411b 100644 (file)
@@ -14,9 +14,31 @@ default_attributes(
         }
       }
     }
+  },
+  :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[equinix]"
+  "role[equinix]",
+  "role[db-slave]"
 )