name "dulcy"
-description "Master role applied to dulcy
-"
+description "Master role applied to dulcy"
default_attributes(
:networking => {
}
},
:postgresql => {
+ :versions => ["9.6"],
:settings => {
:defaults => {
- :shared_buffers => "10GB",
- :work_mem => "160MB",
+ :work_mem => "300MB",
:maintenance_work_mem => "10GB",
:random_page_cost => "1.5",
- :effective_cache_size => "60GB"
+ :effective_cache_size => "60GB",
+ :fsync => "on",
+ :effective_io_concurrency => "3"
}
}
},
:nominatim => {
+ :state => "standalone",
+ :enable_backup => false,
+ :enable_git_updates => true,
+ :dbadmins => %w[lonvia tomh],
+ :dbcluster => "9.6/main",
:flatnode_file => "/ssd/nominatim/nodes.store",
- :database => {
- :cluster => "9.4/main",
- :dbname => "nominatim",
- :postgis => "2.1"
- },
- :fpm_pools => {
- :www => {
- :port => "8000",
- :pm => "dynamic",
- :max_children => "60"
- },
- :bulk => {
- :port => "8001",
- :pm => "static",
- :max_children => "10"
+ :logdir => "/ssd/nominatim/log",
+ :tablespaces => {
+ "dosm" => "/ssd/tablespaces/dosm",
+ "iosm" => "/ssd/tablespaces/iosm",
+ "dplace" => "/ssd/tablespaces/dplace",
+ "iplace" => "/ssd/tablespaces/iplace",
+ "daddress" => "/ssd/tablespaces/daddress",
+ "iaddress" => "/ssd/tablespaces/iaddress",
+ "dsearch" => "/ssd/tablespaces/dsearch",
+ "isearch" => "/ssd/tablespaces/isearch",
+ "daux" => "/ssd/tablespaces/daux",
+ "iaux" => "/ssd/tablespaces/iaux"
+ }
+ },
+ :sysfs => {
+ :md_tune => {
+ :comment => "Enable request merging for NVMe devices",
+ :parameters => {
+ "block/nvme0n1/queue/nomerges" => "1",
+ "block/nvme1n1/queue/nomerges" => "1"
}
}
}
run_list(
"role[ic]",
- "role[nominatim-standalone]"
+ "role[nominatim]"
)