From 8a6d7108ea4c0fbf422bbfc101a58740423bc896 Mon Sep 17 00:00:00 2001 From: Sachin Prabhu Date: Wed, 10 Apr 2024 16:49:59 +0100 Subject: [PATCH] testcases/loading: Use 50 simultaneous users writing 16M files Signed-off-by: Sachin Prabhu --- testcases/loading/test_loading.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/testcases/loading/test_loading.py b/testcases/loading/test_loading.py index 3bf8b85..0358757 100644 --- a/testcases/loading/test_loading.py +++ b/testcases/loading/test_loading.py @@ -26,11 +26,11 @@ # total number of processes total_processes: int = 10 # each with this number of threads -per_process_threads: int = 50 +per_process_threads: int = 5 # running the connection test for this many seconds test_runtime: int = 30 # size of test files -test_file_size = 4 * 1024 # 4k size +test_file_size = 16 * 1024 * 1024 # 4k size # number of files each thread creates test_file_number = 10