X-Git-Url: https://git.openstreetmap.org/chef.git/blobdiff_plain/c327f408901af4827a9d910cbb666c306ac7d575..2835205c501da417ff80ce4f06dc32d14c8c38bb:/roles/snap-01.rb diff --git a/roles/snap-01.rb b/roles/snap-01.rb index 00b8d4b2a..15db38629 100644 --- a/roles/snap-01.rb +++ b/roles/snap-01.rb @@ -4,19 +4,46 @@ description "Master role applied to snap-01" default_attributes( :networking => { :interfaces => { - :internal_ipv4 => { + :internal => { :interface => "bond0", :role => :internal, - :family => :inet, - :address => "10.0.48.49", + :inet => { + :address => "10.0.48.49" + }, :bond => { + :mode => "802.3ad", + :lacprate => "fast", + :xmithashpolicy => "layer3+4", :slaves => %w[eno1 eno2 eno3 eno4] } } } + }, + :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-ams]", + "role[db-master]", + "role[db-backup]" )