]> git.openstreetmap.org Git - chef.git/commitdiff
Tune connection tracking on tile servers
authorTom Hughes <tom@compton.nu>
Mon, 18 Jul 2022 07:54:58 +0000 (08:54 +0100)
committerTom Hughes <tom@compton.nu>
Mon, 18 Jul 2022 07:54:58 +0000 (08:54 +0100)
roles/tile.rb

index 2de49372c92f6cc45384dafabd198561351ff1ad..1da7726d863ee13be19550b7fc87d03e19a82119 100644 (file)
@@ -62,6 +62,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 +86,7 @@ default_attributes(
         "net.core.default_qdisc" => "fq",
         "net.ipv4.tcp_congestion_control" => "bbr"
       }
-    },
+    }
   },
   :tile => {
     :database => {