X-Git-Url: https://git.openstreetmap.org/chef.git/blobdiff_plain/ddd5881f47d2eaf1fd585d831bc787fa182def72..ff6e215ca12d2efe3493da1eb0152751ceef7162:/roles/tile.rb diff --git a/roles/tile.rb b/roles/tile.rb index 76ef4b49c..d0de61bbe 100644 --- a/roles/tile.rb +++ b/roles/tile.rb @@ -4,8 +4,9 @@ description "Role applied to all tile servers" default_attributes( :accounts => { :users => { + :pnorman => { :status => :user }, :tile => { - :members => [:jburgess, :tomh] + :members => [:jburgess, :tomh, :pnorman] } } }, @@ -13,7 +14,7 @@ default_attributes( :mpm => "event", :timeout => 60, :event => { - :server_limit => 60, + :server_limit => 80, :max_request_workers => 1200, :threads_per_child => 20, :min_spare_threads => 300, @@ -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.6.1", + :fonts_script => "/srv/tile.openstreetmap.org/styles/default/scripts/get-fonts.sh", :max_zoom => 19 } }