X-Git-Url: https://git.openstreetmap.org/chef.git/blobdiff_plain/a7d96c8358a00088b485fadb5966eb4b231d2ff1..eae57e71645f36711c38a106200b98d5291e3a57:/roles/poldi.rb diff --git a/roles/poldi.rb b/roles/poldi.rb index 77b905b36..9e32e6318 100644 --- a/roles/poldi.rb +++ b/roles/poldi.rb @@ -3,31 +3,34 @@ description "Master role applied to poldi" default_attributes( :devices => { - :ubuntu => { - :comment => "RAID array backing the ubuntu volume group", + :areca_ld_tune => { + :comment => "RAID arrays on areca", :type => "block", :bus => "scsi", - :serial => "20004d927fffff800", + :serial => "20004d927fffff*", :attrs => { - "queue/scheduler" => "deadline" + "queue/scheduler" => "deadline", + "queue/read_ahead_kb" => "2048" } }, - :nominatim => { - :comment => "RAID array backing the nominatim volume group", + :ssd_samsung_tune => { + :comment => "Tune Samsung SSD", :type => "block", - :bus => "scsi", - :serial => "20004d927fffff801", + :bus => "ata", + :serial => "Samsung_SSD_840_PRO_Series_*", :attrs => { - "queue/scheduler" => "deadline" + "queue/scheduler" => "noop", + "queue/nr_requests" => "256", + "queue/read_ahead_kb" => "2048" } - }, - :nominatim2 => { - :comment => "RAID array backing the nominatim2 volume group", - :type => "block", - :bus => "scsi", - :serial => "20004d927fffff802", - :attrs => { - "queue/scheduler" => "deadline" + } + }, + :sysfs => { + :md_tune => { + :comment => "Tune the md sync performance so as not to kill system performance", + :parameters => { + "block/md0/md/sync_speed_min" => "1", + "block/md0/md/sync_speed_max" => "100000" } } }, @@ -43,24 +46,60 @@ default_attributes( :interface => "eth1", :role => :external, :family => :inet, - :address => "128.40.168.106" + :address => "128.40.45.203" } } }, :postgresql => { + :versions => [ "9.3" ], :settings => { :defaults => { - :shared_buffers => "9GB", + :shared_buffers => "10GB", :work_mem => "160MB", - :maintenance_work_mem => "9GB", + :maintenance_work_mem => "10GB", :random_page_cost => "1.5", - :effective_cache_size => "24GB" + :effective_cache_size => "48GB", + :fsync => "on" } } + }, + :nominatim => { + :enabled => true, + :flatnode_file => "/ssd-old/nominatim/nodes.store", + :database => { + :cluster => "9.3/main", + :dbname => "nominatim", + :postgis => "2.1" + }, + :fpm_pools => { + :www => { + :port => "8000", + :pm => "dynamic", + :max_children => "60" + }, + :bulk => { + :port => "8001", + :pm => "static", + :max_children => "10" + } + }, + :tablespaces => { + "Osm2pgsql_Data" => "aux", + "Osm2pgsql_Index" => "data", + "Place_Data" => "ssd2", + "Place_Index" => "ssd1", + "Address_Data" => "ssd2", + "Address_Index" => "ssd1", + "Search_Data" => "ssd1", + "Search_Index" => "ssd1", + "Aux_Data" => "aux", + "Aux_Index" => "aux", + } } ) run_list( - "role[ucl-internal]", + "role[ucl-wolfson]", + "role[tyan-s7010]", "role[nominatim]" )