public inbox for development@lists.ipfire.org
 help / color / mirror / Atom feed
* [PATCH] sysctl: Adopt more settings from the IBM HPC guidelines
@ 2019-10-14 16:44 Michael Tremer
  0 siblings, 0 replies; only message in thread
From: Michael Tremer @ 2019-10-14 16:44 UTC (permalink / raw)
  To: development

[-- Attachment #1: Type: text/plain, Size: 1159 bytes --]

https://www.ibm.com/developerworks/community/wikis/home?lang=en#!/wiki/Welcome%20to%20High%20Performance%20Computing%20%28HPC%29%20Central/page/Linux%20System%20Tuning%20Recommendations

Since we have already configured most of our IP/TCP stack
for low latency and fast throughput, these settings complete
those efforts.

Signed-off-by: Michael Tremer <michael.tremer(a)ipfire.org>
---
 config/etc/sysctl.conf | 7 +++++++
 1 file changed, 7 insertions(+)

diff --git a/config/etc/sysctl.conf b/config/etc/sysctl.conf
index 9a943fffa..d11e53c88 100644
--- a/config/etc/sysctl.conf
+++ b/config/etc/sysctl.conf
@@ -76,9 +76,16 @@ vm.swappiness = 1
 kernel.sched_migration_cost_ns = 5000000
 
 # Increase kernel buffer size maximums
+net.ipv4.tcp_mem = 16777216 16777216 16777216
 net.ipv4.tcp_rmem = 4096 87380 16777216
 net.ipv4.tcp_wmem = 4096 16384 16777216
 net.ipv4.udp_mem = 3145728 4194304 16777216
 
+# Prefer low latency over higher throughput
+net.ipv4.tcp_low_latency=1
+
+# Reserve more socket space for the TCP window
+net.ipv4.tcp_adv_win_scale=2
+
 # Enable TCP fast-open
 net.ipv4.tcp_fastopen = 3
-- 
2.20.1


^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2019-10-14 16:44 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-10-14 16:44 [PATCH] sysctl: Adopt more settings from the IBM HPC guidelines Michael Tremer

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox