X-Git-Url: https://git.openstreetmap.org/chef.git/blobdiff_plain/6fdba5edc17c0ccbb5dc3bd15690dcba6708e1fe..29e07b49f54063b73c24ec645f2cda9035846326:/roles/pummelzacken.rb diff --git a/roles/pummelzacken.rb b/roles/pummelzacken.rb index f5a573d47..d237bd053 100644 --- a/roles/pummelzacken.rb +++ b/roles/pummelzacken.rb @@ -19,7 +19,7 @@ default_attributes( } }, :postgresql => { - :versions => ["9.5"], + :versions => ["12"], :settings => { :defaults => { :listen_addresses => "10.0.0.20", @@ -27,14 +27,17 @@ default_attributes( :maintenance_work_mem => "10GB", :random_page_cost => "1.5", :effective_cache_size => "60GB", + :effective_io_concurrency => "256", :fsync => "on" } } }, :nominatim => { :state => "standalone", - :dbadmins => %w(lonvia tomh), - :dbcluster => "9.5/main", + :dbadmins => %w[lonvia tomh], + :dbcluster => "12/main", + :postgis => "2.5", + :enable_backup => true, :flatnode_file => "/ssd/nominatim/nodes.store", :tablespaces => { "dosm" => "/ssd/tablespaces/dosm", @@ -47,6 +50,11 @@ default_attributes( "isearch" => "/ssd/tablespaces/isearch", "daux" => "/data/tablespaces/daux", "iaux" => "/data/tablespaces/iaux" + }, + :fpm_pools => { + :www => { + :max_children => "40" + } } } )