X-Git-Url: https://git.openstreetmap.org./chef.git/blobdiff_plain/c6262332a3069a718f380761a217158752c097bb..977122dbb6db324c53106b01dd794f0b316b2dd7:/roles/db.rb diff --git a/roles/db.rb b/roles/db.rb index dbcf4baa6..5e4aa0d0b 100644 --- a/roles/db.rb +++ b/roles/db.rb @@ -35,19 +35,18 @@ default_attributes( } } }, - :nfs => { - "/store/rails" => { :host => "ironbelly", :path => "/store/rails" } - }, :postgresql => { :settings => { :defaults => { :listen_addresses => "*", - :max_connections => "1000", + :max_connections => "1500", :max_stack_depth => "7MB", - :checkpoint_segments => "32", + :wal_level => "logical", :max_wal_size => "1536MB", :checkpoint_completion_target => "0.8", + :max_wal_senders => "10", :cpu_tuple_cost => "0.1", + :jit => "off", :log_min_duration_statement => "1000", :late_authentication_rules => [ { :address => "10.0.32.0/20" }, @@ -66,7 +65,3 @@ default_attributes( } } ) - -run_list( - "recipe[nfs]" -)