From: Tom Hughes Date: Wed, 19 Aug 2020 17:36:27 +0000 (+0100) Subject: Configure snap-01 as a database slave X-Git-Url: https://git.openstreetmap.org./chef.git/commitdiff_plain/da998dc24ddabfd1060911d7f6b3aea7b84c4d0b Configure snap-01 as a database slave --- diff --git a/roles/snap-01.rb b/roles/snap-01.rb index 00b8d4b2a..c79f14145 100644 --- a/roles/snap-01.rb +++ b/roles/snap-01.rb @@ -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]" )