From 2dae6c90ceab46cc0a319d569d56bdff69108276 Mon Sep 17 00:00:00 2001 From: James Wilson Date: Thu, 5 Aug 2021 12:22:22 +0100 Subject: [PATCH] Keep file handle limit comment in sync --- backend/telemetry_core/tests/soak_tests.rs | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/backend/telemetry_core/tests/soak_tests.rs b/backend/telemetry_core/tests/soak_tests.rs index 96c4e78..8f0ed0a 100644 --- a/backend/telemetry_core/tests/soak_tests.rs +++ b/backend/telemetry_core/tests/soak_tests.rs @@ -23,10 +23,10 @@ Note that on MacOS inparticular, you may need to increase some limits to be able to open a large number of connections. Try commands like: ```sh -sudo sysctl -w kern.maxfiles=50000 -sudo sysctl -w kern.maxfilesperproc=50000 -ulimit -n 50000 -sudo sysctl -w kern.ipc.somaxconn=50000 +sudo sysctl -w kern.maxfiles=100000 +sudo sysctl -w kern.maxfilesperproc=100000 +ulimit -n 100000 +sudo sysctl -w kern.ipc.somaxconn=100000 sudo sysctl -w kern.ipc.maxsockbuf=16777216 ```