]> git.openstreetmap.org Git - chef.git/blob - roles/poldi.rb
poldi: tweak md sync (check) performance to lower impact on machine
[chef.git] / roles / poldi.rb
1 name "poldi"
2 description "Master role applied to poldi"
3
4 default_attributes(
5   :devices => {
6     :ubuntu => {
7       :comment => "RAID array backing the ubuntu volume group",
8       :type => "block",
9       :bus => "scsi",
10       :serial => "20004d927fffff800",
11       :attrs => {
12         "queue/scheduler" => "deadline"
13       }
14     },
15     :nominatim => {
16       :comment => "RAID array backing the nominatim volume group",
17       :type => "block",
18       :bus => "scsi",
19       :serial => "20004d927fffff801",
20       :attrs => {
21         "queue/scheduler" => "deadline"
22       }
23     },
24     :nominatim2 => {
25       :comment => "RAID array backing the nominatim2 volume group",
26       :type => "block",
27       :bus => "scsi",
28       :serial => "20004d927fffff802",
29       :attrs => {
30         "queue/scheduler" => "deadline"
31       }
32     }
33   },
34   :sysfs => {
35     :md_tune => {
36       :comment => "Tune the md sync performance so as not to kill system performance",
37       :parameters => {
38         "block/md0/md/sync_speed_min" => "100",
39         "block/md0/md/sync_speed_max" => "100000"
40       }
41     }
42   },
43   :networking => {
44     :interfaces => {
45       :internal_ipv4 => {
46         :interface => "eth0",
47         :role => :internal,
48         :family => :inet,
49         :address => "10.0.0.16"
50       },
51       :external_ipv4 => {
52         :interface => "eth1",
53         :role => :external,
54         :family => :inet,
55         :address => "128.40.168.106"
56       }
57     }
58   },
59   :postgresql => {
60     :settings => {
61       :defaults => {
62         :shared_buffers => "24GB",
63         :work_mem => "160MB",
64         :maintenance_work_mem => "10GB",
65         :random_page_cost => "1.5",
66         :effective_cache_size => "48GB"
67       }
68     }
69   }
70 )
71
72 run_list(
73   "role[ucl-internal]",
74   "role[nominatim]"
75 )