X-Git-Url: https://git.openstreetmap.org/chef.git/blobdiff_plain/2ca7c974fd25e6f900fff9575a23dbe28c83a546..2c9527844e884db26c83395ac4068d76507c7999:/roles/tile.rb diff --git a/roles/tile.rb b/roles/tile.rb index 76ef4b49c..4c47704dc 100644 --- a/roles/tile.rb +++ b/roles/tile.rb @@ -4,23 +4,22 @@ description "Role applied to all tile servers" default_attributes( :accounts => { :users => { + :pnorman => { :status => :administrator }, :tile => { - :members => [:jburgess, :tomh] + :members => [:jburgess, :tomh, :pnorman] } } }, :apache => { :mpm => "event", :timeout => 60, + :evasive => false, :event => { - :server_limit => 60, - :max_request_workers => 1200, :threads_per_child => 20, :min_spare_threads => 300, - :max_spare_threads => 1200, :max_connections_per_child => 0, :async_request_worker_factor => 4, - :listen_cores_buckets_ratio => 6 + :listen_cores_buckets_ratio => 8 } }, :munin => { @@ -36,15 +35,17 @@ default_attributes( :settings => { :defaults => { :max_connections => "250", - :temp_buffers => "32MB", + :shared_buffers => "16GB", :work_mem => "128MB", + :maintenance_work_mem => "8GB", :max_parallel_workers_per_gather => "0", + :wal_level => "minimal", :wal_buffers => "1024kB", :wal_writer_delay => "500ms", + :checkpoint_timeout => "60min", :commit_delay => "10000", - :checkpoint_segments => "60", - :max_wal_size => "2880MB", - :random_page_cost => "1.1", + :max_wal_size => "10GB", + :max_wal_senders => "0", :jit => "off", :track_activity_query_size => "16384", :autovacuum_vacuum_scale_factor => "0.05", @@ -62,6 +63,18 @@ default_attributes( "net.core.somaxconn" => 10000 } }, + :network_conntrack_time_wait => { + :comment => "Only track completed connections for 30 seconds", + :parameters => { + "net.netfilter.nf_conntrack_tcp_timeout_time_wait" => "30" + } + }, + :network_conntrack_max => { + :comment => "Increase max number of connections tracked", + :parameters => { + "net.netfilter.nf_conntrack_max" => "524288" + } + }, :no_tcp_slow_start => { :comment => "Disable TCP slow start", :parameters => { @@ -74,7 +87,7 @@ default_attributes( "net.core.default_qdisc" => "fq", "net.ipv4.tcp_congestion_control" => "bbr" } - }, + } }, :tile => { :database => { @@ -92,7 +105,8 @@ default_attributes( :styles => { :default => { :repository => "https://github.com/gravitystorm/openstreetmap-carto.git", - :revision => "v5.5.0", + :revision => "v5.8.0", + :fonts_script => "/srv/tile.openstreetmap.org/styles/default/scripts/get-fonts.sh", :max_zoom => 19 } }