From 6a617bb20948addbaf4a09a796be9ff7015757fa Mon Sep 17 00:00:00 2001 From: Grant Slater Date: Fri, 7 Feb 2025 00:21:03 +0000 Subject: [PATCH] imagery: tune gdal http connections --- cookbooks/imagery/resources/site.rb | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/cookbooks/imagery/resources/site.rb b/cookbooks/imagery/resources/site.rb index 5511036c8..0d46526ce 100644 --- a/cookbooks/imagery/resources/site.rb +++ b/cookbooks/imagery/resources/site.rb @@ -105,7 +105,9 @@ action :create do description "Map server for #{new_resource.site} layer" environment "MS_DEBUGLEVEL" => "0", "MS_ERRORFILE" => "stderr", - "GDAL_CACHEMAX" => "128" + "GDAL_CACHEMAX" => "128", + "GDAL_HTTP_TCP_KEEPALIVE" => "YES", + "GDAL_HTTP_VERSION" => "2TLS" limit_nofile 16384 memory_high "12G" memory_max "12G" @@ -154,7 +156,7 @@ action :create do systemd_timer "mapserv-fcgi-#{new_resource.site}-stop" do on_boot_sec "10m" - on_unit_inactive_sec "30m" + on_unit_inactive_sec "6h" randomized_delay_sec "20m" not_if { new_resource.uses_tiler } end -- 2.39.5