From: Grant Slater Date: Fri, 21 Feb 2014 15:39:41 +0000 (+0000) Subject: poldi: tune disks readahead X-Git-Url: https://git.openstreetmap.org/chef.git/commitdiff_plain/59d9dcec009d1a6ce77cb0c7e9a33c4324998598?ds=sidebyside poldi: tune disks readahead --- diff --git a/roles/poldi.rb b/roles/poldi.rb index 6a92cfc90..869d4b8be 100644 --- a/roles/poldi.rb +++ b/roles/poldi.rb @@ -3,31 +3,25 @@ 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", - :attrs => { - "queue/scheduler" => "deadline" - } - }, - :nominatim2 => { - :comment => "RAID array backing the nominatim2 volume group", - :type => "block", - :bus => "scsi", - :serial => "20004d927fffff802", + :bus => "ata", + :serial => "Samsung_SSD_840_PRO_Series_*", :attrs => { - "queue/scheduler" => "deadline" + "queue/scheduler" => "noop", + "queue/nr_requests" => "256", + "queue/read_ahead_kb" => "2048" } } },