X-Git-Url: https://git.openstreetmap.org./chef.git/blobdiff_plain/135166270016c1fe9ec42f1555141a857e7da097..50aea11082eaa90bd37593b9c987d38a082f4e1b:/cookbooks/imagery/resources/site.rb diff --git a/cookbooks/imagery/resources/site.rb b/cookbooks/imagery/resources/site.rb index 4fca7bb9a..5ce7d2b88 100644 --- a/cookbooks/imagery/resources/site.rb +++ b/cookbooks/imagery/resources/site.rb @@ -27,6 +27,7 @@ property :site, String, :name_property => true property :title, String, :required => [:create] property :aliases, [String, Array], :default => [] property :bbox, Array, :required => [:create] +property :uses_tiler, [true, false], :default => false action :create do directory "/srv/#{new_resource.site}" do @@ -102,12 +103,10 @@ action :create do systemd_service "mapserv-fcgi-#{new_resource.site}" do description "Map server for #{new_resource.site} layer" - environment "MS_MAP_PATTERN" => "^/srv/imagery/mapserver/", - "MS_DEBUGLEVEL" => "0", + environment "MS_DEBUGLEVEL" => "0", "MS_ERRORFILE" => "stderr", - "GDAL_CACHEMAX" => "512" + "GDAL_CACHEMAX" => "128" limit_nofile 16384 - memory_high "1G" memory_max "4G" user "imagery" group "imagery" @@ -115,8 +114,8 @@ action :create do standard_input "socket" sandbox true restrict_address_families "AF_UNIX" - # Terminate service after 30mins. Service is socket activated - runtime_max_sec 1800 + timeout_stop_sec 60 + not_if { new_resource.uses_tiler } end systemd_socket "mapserv-fcgi-#{new_resource.site}" do @@ -124,6 +123,7 @@ action :create do socket_user "imagery" socket_group "imagery" listen_stream "/run/mapserver-fastcgi/layer-#{new_resource.site}.socket" + not_if { new_resource.uses_tiler } end # Ensure service is stopped because otherwise the socket cannot reload @@ -132,11 +132,35 @@ action :create do action :nothing subscribes :stop, "systemd_service[mapserv-fcgi-#{new_resource.site}]" subscribes :stop, "systemd_socket[mapserv-fcgi-#{new_resource.site}]" + not_if { new_resource.uses_tiler } end systemd_unit "mapserv-fcgi-#{new_resource.site}.socket" do action [:enable, :start] subscribes :restart, "systemd_socket[mapserv-fcgi-#{new_resource.site}]" + not_if { new_resource.uses_tiler } + end + + # mapserver leaks memory, so restart it regularly. It is activated automatically by socket + systemd_service "mapserv-fcgi-#{new_resource.site}-stop" do + type "simple" + user "root" + exec_start "/bin/systemctl --quiet stop mapserv-fcgi-#{new_resource.site}.service" + sandbox true + restrict_address_families "AF_UNIX" + not_if { new_resource.uses_tiler } + end + + systemd_timer "mapserv-fcgi-#{new_resource.site}-stop" do + on_boot_sec "10m" + on_unit_inactive_sec "30m" + randomized_delay_sec "20m" + not_if { new_resource.uses_tiler } + end + + service "mapserv-fcgi-#{new_resource.site}-stop.timer" do + action [:enable, :start] + not_if { new_resource.uses_tiler } end ssl_certificate new_resource.site do @@ -154,10 +178,12 @@ action :delete do service "mapserv-fcgi-#{new_resource.site}" do provider Chef::Provider::Service::Systemd action [:stop, :disable] + not_if { new_resource.uses_tiler } end systemd_service "mapserv-fcgi-#{new_resource.site}" do action :delete + not_if { new_resource.uses_tiler } end nginx_site new_resource.site do