]> git.openstreetmap.org Git - chef.git/commitdiff
tilecache: tune peer selection
authorGrant Slater <git@firefishy.com>
Sun, 5 Apr 2020 22:46:22 +0000 (23:46 +0100)
committerGrant Slater <git@firefishy.com>
Sun, 5 Apr 2020 22:46:22 +0000 (23:46 +0100)
cookbooks/tilecache/templates/default/nginx_tile.conf.erb

index 969b17754538f570d51493fd85394dad44315815..bd9638d15ebd6c1ceaf0ce4eaf8a6bb14e9232ab 100644 (file)
@@ -1,8 +1,8 @@
 # DO NOT EDIT - This file is being maintained by Chef
 
 upstream tile_cache_backend {
-  server 127.0.0.1:8080 max_fails=64 fail_timeout=2s;
-  # server 127.0.0.2:8080 max_fails=64 fail_timeout=2s;
+  server 127.0.0.1:8080 max_fails=64 fail_timeout=4s;
+  # server 127.0.0.2:8080 max_fails=64 fail_timeout=4s;
 
   # Add the tile_siblings caches to relieve pressure if local squid failing
   # Balancer: round-robin
@@ -12,8 +12,8 @@ upstream tile_cache_backend {
 <% if cache_peer == cache[:fqdn] -%>
 <% if cache[:hostname] != node[:hostname] -%>
 <% cache.ipaddresses(:family => :inet, :role => :external).sort.each do |address| -%>
-  server <%= address %>:80 weight=<%= server_weight.div(10) %> max_fails=64 fail_timeout=2s; # Server <%= cache[:hostname] %>
-<% server_weight += 5 -%>
+  server <%= address %>:80 weight=<%= server_weight.div(10) %> max_fails=64 fail_timeout=4s; # Server <%= cache[:hostname] %>
+<% server_weight += 10 -%>
 <% end -%>
 <% end -%>
 <% end -%>
@@ -257,6 +257,7 @@ server {
       proxy_connect_timeout 20s;
 
       proxy_next_upstream_tries 3;
+      proxy_next_upstream error timeout http_502 http_404;
 
       # Replace host header.
       proxy_set_header Host 'tile.openstreetmap.org';