From cb6660bdd8c3fcf3bdf4c6bbaa6d824fd867abea Mon Sep 17 00:00:00 2001 From: Andrew Noyes Date: Thu, 21 Aug 2025 13:01:56 -0400 Subject: [PATCH] Tinker with defaults to increase throughput --- tools/load_tester.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tools/load_tester.cpp b/tools/load_tester.cpp index 0b02326..b1b8d24 100644 --- a/tools/load_tester.cpp +++ b/tools/load_tester.cpp @@ -124,9 +124,9 @@ int getConnectFdUnix(const char *socket_name) { struct Config { int concurrency = 64; - int requests_per_connection = 1; - int connect_threads = 4; - int network_threads = 4; + int requests_per_connection = 50; + int connect_threads = 1; + int network_threads = 5; int event_batch_size = 32; int connection_buf_size = 1024; std::string host = "";