From f65fcc2a12a3e9a2f897ce0e04d4d484ecea5965 Mon Sep 17 00:00:00 2001 From: Aastvik Date: Tue, 5 Aug 2025 13:21:33 +0530 Subject: [PATCH 1/3] code changes and results --- Samples/Authentication/src/StandAloneJWT.rb | 38 ++--- output.log | 163 ++++++++++++++++++++ 2 files changed, 183 insertions(+), 18 deletions(-) create mode 100644 output.log diff --git a/Samples/Authentication/src/StandAloneJWT.rb b/Samples/Authentication/src/StandAloneJWT.rb index 45f4281..dfec32b 100644 --- a/Samples/Authentication/src/StandAloneJWT.rb +++ b/Samples/Authentication/src/StandAloneJWT.rb @@ -146,29 +146,31 @@ def do_one_payment jwt_client = StandAloneJWT.new # ONE shared client -3.times do |iteration| - threads = [] - - 5.times do |thread_idx| - threads << Thread.new do - CALLS_PER_THREAD.times do |call_idx| - status, latency = jwt_client.do_one_payment - lat_str = latency.negative? ? 'ERR' : format('%.1f', latency) - - puts "Iteration #{iteration + 1}, T#{thread_idx + 1}-#{call_idx}: status=#{status} latency=#{lat_str} ms" - mutex.synchronize do - latencies << latency if latency.positive? - status_cnt[status] += 1 +thread_nums = [10,20,30,40,50] # number of threads to test + + + thread_nums.each do |num_threads| + threads = [] + num_threads.times do |thread_idx| + threads << Thread.new do + CALLS_PER_THREAD.times do |call_idx| + status, latency = jwt_client.do_one_payment + lat_str = latency.negative? ? 'ERR' : format('%.1f', latency) + + puts "Iteration with #{num_threads} threads, T#{thread_idx + 1}-#{call_idx+1}: status=#{status} latency=#{lat_str} ms" + mutex.synchronize do + latencies << latency if latency.positive? + status_cnt[status] += 1 + end end end end + threads.each(&:join) + sleep 10 + puts " " end - threads.each(&:join) - sleep 20 -end - -##################################### + ##################################### # SIMPLE STATISTICS ##################################### unless latencies.empty? diff --git a/output.log b/output.log new file mode 100644 index 0000000..a969311 --- /dev/null +++ b/output.log @@ -0,0 +1,163 @@ +Iteration with 10 threads, T9-1: status=201 latency=1408.2 ms +Iteration with 10 threads, T7-1: status=201 latency=1455.7 ms +Iteration with 10 threads, T5-1: status=201 latency=1499.7 ms +Iteration with 10 threads, T10-1: status=201 latency=1480.1 ms +Iteration with 10 threads, T4-1: status=201 latency=1514.5 ms +Iteration with 10 threads, T1-1: status=201 latency=1568.9 ms +Iteration with 10 threads, T2-1: status=201 latency=1574.4 ms +Iteration with 10 threads, T3-1: status=201 latency=1665.8 ms +Iteration with 10 threads, T6-1: status=201 latency=1667.9 ms +Iteration with 10 threads, T8-1: status=201 latency=1898.2 ms + +Iteration with 20 threads, T6-1: status=201 latency=771.2 ms +Iteration with 20 threads, T5-1: status=201 latency=779.1 ms +Iteration with 20 threads, T8-1: status=201 latency=774.3 ms +Iteration with 20 threads, T2-1: status=201 latency=789.6 ms +Iteration with 20 threads, T7-1: status=201 latency=792.3 ms +Iteration with 20 threads, T4-1: status=201 latency=873.4 ms +Iteration with 20 threads, T3-1: status=201 latency=875.9 ms +Iteration with 20 threads, T10-1: status=201 latency=867.1 ms +Iteration with 20 threads, T9-1: status=201 latency=949.6 ms +Iteration with 20 threads, T1-1: status=201 latency=1026.5 ms +Iteration with 20 threads, T17-1: status=201 latency=1342.1 ms +Iteration with 20 threads, T12-1: status=201 latency=1428.1 ms +Iteration with 20 threads, T11-1: status=201 latency=1458.5 ms +Iteration with 20 threads, T19-1: status=201 latency=1398.6 ms +Iteration with 20 threads, T14-1: status=201 latency=1465.3 ms +Iteration with 20 threads, T15-1: status=201 latency=1457.8 ms +Iteration with 20 threads, T16-1: status=201 latency=1575.7 ms +Iteration with 20 threads, T13-1: status=201 latency=1696.3 ms +Iteration with 20 threads, T18-1: status=201 latency=1686.5 ms +Iteration with 20 threads, T20-1: status=201 latency=1677.2 ms + +Iteration with 30 threads, T1-1: status=201 latency=921.6 ms +Iteration with 30 threads, T6-1: status=201 latency=907.4 ms +Iteration with 30 threads, T9-1: status=201 latency=902.6 ms +Iteration with 30 threads, T12-1: status=201 latency=962.7 ms +Iteration with 30 threads, T4-1: status=201 latency=984.3 ms +Iteration with 30 threads, T11-1: status=201 latency=982.4 ms +Iteration with 30 threads, T18-1: status=201 latency=968.9 ms +Iteration with 30 threads, T2-1: status=201 latency=1018.4 ms +Iteration with 30 threads, T7-1: status=201 latency=1005.8 ms +Iteration with 30 threads, T20-1: status=201 latency=1147.8 ms +Iteration with 30 threads, T19-1: status=201 latency=1149.4 ms +Iteration with 30 threads, T16-1: status=201 latency=1153.6 ms +Iteration with 30 threads, T14-1: status=201 latency=1158.9 ms +Iteration with 30 threads, T13-1: status=201 latency=1160.8 ms +Iteration with 30 threads, T17-1: status=201 latency=1296.3 ms +Iteration with 30 threads, T10-1: status=201 latency=1311.0 ms +Iteration with 30 threads, T5-1: status=201 latency=1322.4 ms +Iteration with 30 threads, T15-1: status=201 latency=1300.3 ms +Iteration with 30 threads, T3-1: status=201 latency=1563.7 ms +Iteration with 30 threads, T8-1: status=201 latency=1552.2 ms +Iteration with 30 threads, T22-1: status=201 latency=1519.0 ms +Iteration with 30 threads, T28-1: status=201 latency=1489.3 ms +Iteration with 30 threads, T26-1: status=201 latency=1502.2 ms +Iteration with 30 threads, T24-1: status=201 latency=1618.0 ms +Iteration with 30 threads, T29-1: status=201 latency=1586.0 ms +Iteration with 30 threads, T25-1: status=201 latency=1611.5 ms +Iteration with 30 threads, T23-1: status=201 latency=1721.4 ms +Iteration with 30 threads, T27-1: status=201 latency=1693.4 ms +Iteration with 30 threads, T21-1: status=201 latency=1742.0 ms +Iteration with 30 threads, T30-1: status=201 latency=1771.1 ms + +Iteration with 40 threads, T5-1: status=201 latency=1143.9 ms +Iteration with 40 threads, T9-1: status=201 latency=1137.1 ms +Iteration with 40 threads, T18-1: status=201 latency=1124.7 ms +Iteration with 40 threads, T24-1: status=201 latency=1117.5 ms +Iteration with 40 threads, T3-1: status=201 latency=1148.3 ms +Iteration with 40 threads, T10-1: status=201 latency=1136.3 ms +Iteration with 40 threads, T28-1: status=201 latency=1113.7 ms +Iteration with 40 threads, T1-1: status=201 latency=1153.1 ms +Iteration with 40 threads, T2-1: status=201 latency=1151.1 ms +Iteration with 40 threads, T23-1: status=201 latency=1120.4 ms +Iteration with 40 threads, T20-1: status=201 latency=1124.5 ms +Iteration with 40 threads, T13-1: status=201 latency=1133.8 ms +Iteration with 40 threads, T12-1: status=201 latency=1291.4 ms +Iteration with 40 threads, T7-1: status=201 latency=1300.0 ms +Iteration with 40 threads, T15-1: status=201 latency=1287.8 ms +Iteration with 40 threads, T17-1: status=201 latency=1285.2 ms +Iteration with 40 threads, T4-1: status=201 latency=1305.4 ms +Iteration with 40 threads, T19-1: status=201 latency=1283.1 ms +Iteration with 40 threads, T11-1: status=201 latency=1293.9 ms +Iteration with 40 threads, T29-1: status=201 latency=1271.8 ms +Iteration with 40 threads, T6-1: status=201 latency=1302.8 ms +Iteration with 40 threads, T22-1: status=201 latency=1399.2 ms +Iteration with 40 threads, T27-1: status=201 latency=1394.0 ms +Iteration with 40 threads, T25-1: status=201 latency=1400.4 ms +Iteration with 40 threads, T16-1: status=201 latency=1412.0 ms +Iteration with 40 threads, T30-1: status=201 latency=1395.9 ms +Iteration with 40 threads, T14-1: status=201 latency=1415.3 ms +Iteration with 40 threads, T21-1: status=201 latency=1460.2 ms +Iteration with 40 threads, T8-1: status=201 latency=1479.0 ms +Iteration with 40 threads, T26-1: status=201 latency=1512.0 ms +Iteration with 40 threads, T32-1: status=201 latency=1986.8 ms +Iteration with 40 threads, T39-1: status=201 latency=1938.7 ms +Iteration with 40 threads, T31-1: status=201 latency=1996.7 ms +Iteration with 40 threads, T35-1: status=201 latency=1963.6 ms +Iteration with 40 threads, T36-1: status=201 latency=1957.2 ms +Iteration with 40 threads, T38-1: status=201 latency=2226.6 ms +Iteration with 40 threads, T33-1: status=201 latency=2260.0 ms +Iteration with 40 threads, T37-1: status=201 latency=2233.7 ms +Iteration with 40 threads, T34-1: status=201 latency=2253.4 ms +Iteration with 40 threads, T40-1: status=201 latency=2216.6 ms + +Iteration with 50 threads, T40-1: status=201 latency=1276.4 ms +Iteration with 50 threads, T25-1: status=201 latency=1302.7 ms +Iteration with 50 threads, T7-1: status=201 latency=1328.2 ms +Iteration with 50 threads, T8-1: status=201 latency=1327.3 ms +Iteration with 50 threads, T29-1: status=201 latency=1318.6 ms +Iteration with 50 threads, T18-1: status=201 latency=1351.1 ms +Iteration with 50 threads, T3-1: status=201 latency=1374.8 ms +Iteration with 50 threads, T4-1: status=201 latency=1373.3 ms +Iteration with 50 threads, T6-1: status=201 latency=1423.7 ms +Iteration with 50 threads, T15-1: status=201 latency=1410.5 ms +Iteration with 50 threads, T28-1: status=201 latency=1394.2 ms +Iteration with 50 threads, T1-1: status=201 latency=1435.7 ms +Iteration with 50 threads, T13-1: status=201 latency=1414.3 ms +Iteration with 50 threads, T26-1: status=201 latency=1397.7 ms +Iteration with 50 threads, T36-1: status=201 latency=1386.3 ms +Iteration with 50 threads, T31-1: status=201 latency=1392.9 ms +Iteration with 50 threads, T17-1: status=201 latency=1506.3 ms +Iteration with 50 threads, T19-1: status=201 latency=1503.9 ms +Iteration with 50 threads, T14-1: status=201 latency=1511.1 ms +Iteration with 50 threads, T2-1: status=201 latency=1531.5 ms +Iteration with 50 threads, T42-1: status=201 latency=1509.0 ms +Iteration with 50 threads, T9-1: status=201 latency=1630.7 ms +Iteration with 50 threads, T27-1: status=201 latency=1697.2 ms +Iteration with 50 threads, T33-1: status=201 latency=1690.5 ms +Iteration with 50 threads, T24-1: status=201 latency=1701.1 ms +Iteration with 50 threads, T21-1: status=201 latency=1704.7 ms +Iteration with 50 threads, T10-1: status=201 latency=1720.3 ms +Iteration with 50 threads, T11-1: status=201 latency=1718.8 ms +Iteration with 50 threads, T34-1: status=201 latency=1689.2 ms +Iteration with 50 threads, T23-1: status=201 latency=1702.6 ms +Iteration with 50 threads, T16-1: status=201 latency=1720.7 ms +Iteration with 50 threads, T20-1: status=201 latency=1715.3 ms +Iteration with 50 threads, T30-1: status=201 latency=1703.4 ms +Iteration with 50 threads, T32-1: status=201 latency=1701.4 ms +Iteration with 50 threads, T50-1: status=201 latency=1632.9 ms +Iteration with 50 threads, T38-1: status=201 latency=1694.2 ms +Iteration with 50 threads, T22-1: status=201 latency=1713.0 ms +Iteration with 50 threads, T12-1: status=201 latency=1726.6 ms +Iteration with 50 threads, T44-1: status=201 latency=1669.1 ms +Iteration with 50 threads, T39-1: status=201 latency=1749.7 ms +Iteration with 50 threads, T37-1: status=201 latency=1751.8 ms +Iteration with 50 threads, T49-1: status=201 latency=1716.0 ms +Iteration with 50 threads, T5-1: status=201 latency=1829.0 ms +Iteration with 50 threads, T46-1: status=201 latency=1875.2 ms +Iteration with 50 threads, T45-1: status=201 latency=1881.3 ms +Iteration with 50 threads, T41-1: status=201 latency=1910.5 ms +Iteration with 50 threads, T43-1: status=201 latency=1925.9 ms +Iteration with 50 threads, T48-1: status=201 latency=1925.7 ms +Iteration with 50 threads, T35-1: status=201 latency=1978.4 ms +Iteration with 50 threads, T47-1: status=201 latency=2036.9 ms + + +----- SUMMARY ----- +Total calls : 150 +Average latency : 1454.3 ms +Min / Max : 771.2 / 2260.0 ms + +Status histogram: + 201 : 150 From dd9ab7e42ecb6ceecdd88c9728e7314405a48842 Mon Sep 17 00:00:00 2001 From: Aastvik Date: Tue, 5 Aug 2025 14:39:41 +0530 Subject: [PATCH 2/3] new results with thread id --- Samples/Authentication/src/StandAloneJWT.rb | 8 +- output2.log | 323 ++++++++++++++++++++ 2 files changed, 328 insertions(+), 3 deletions(-) create mode 100644 output2.log diff --git a/Samples/Authentication/src/StandAloneJWT.rb b/Samples/Authentication/src/StandAloneJWT.rb index dfec32b..2a1fd3e 100644 --- a/Samples/Authentication/src/StandAloneJWT.rb +++ b/Samples/Authentication/src/StandAloneJWT.rb @@ -138,7 +138,7 @@ def do_one_payment # PARALLEL TEST DRIVER ##################################### THREAD_COUNT = 10 # concurrent threads -CALLS_PER_THREAD = 1 # calls each thread makes +CALLS_PER_THREAD = 2 # calls each thread makes mutex = Mutex.new latencies = [] # stores every latency (ms) @@ -149,15 +149,17 @@ def do_one_payment thread_nums = [10,20,30,40,50] # number of threads to test - thread_nums.each do |num_threads| + thread_nums.each_with_index do |num_threads, iter_idx| + puts "\n--- Iteration #{iter_idx + 1} with #{num_threads} threads ---" threads = [] num_threads.times do |thread_idx| threads << Thread.new do + # puts "[Thread start] Iteration #{iter_idx + 1}, Thread index: #{thread_idx + 1}, Thread object_id: #{Thread.current.object_id}" CALLS_PER_THREAD.times do |call_idx| status, latency = jwt_client.do_one_payment lat_str = latency.negative? ? 'ERR' : format('%.1f', latency) - puts "Iteration with #{num_threads} threads, T#{thread_idx + 1}-#{call_idx+1}: status=#{status} latency=#{lat_str} ms" + puts "Iteration with #{num_threads} threads, T#{thread_idx + 1}-#{call_idx+1} [Thread #{Thread.current.object_id}]: status=#{status} latency=#{lat_str} ms , Thread object_id: #{Thread.current.object_id} " mutex.synchronize do latencies << latency if latency.positive? status_cnt[status] += 1 diff --git a/output2.log b/output2.log new file mode 100644 index 0000000..01ed97a --- /dev/null +++ b/output2.log @@ -0,0 +1,323 @@ + +--- Iteration 1 with 10 threads --- +Iteration with 10 threads, T4-1 [Thread 216]: status=201 latency=1367.8 ms , Thread object_id: 216 +Iteration with 10 threads, T9-1 [Thread 224]: status=201 latency=1351.2 ms , Thread object_id: 224 +Iteration with 10 threads, T3-1 [Thread 232]: status=201 latency=1416.5 ms , Thread object_id: 232 +Iteration with 10 threads, T7-1 [Thread 240]: status=201 latency=1397.3 ms , Thread object_id: 240 +Iteration with 10 threads, T1-1 [Thread 248]: status=201 latency=1450.0 ms , Thread object_id: 248 +Iteration with 10 threads, T5-1 [Thread 256]: status=201 latency=1438.0 ms , Thread object_id: 256 +Iteration with 10 threads, T6-1 [Thread 264]: status=201 latency=1490.9 ms , Thread object_id: 264 +Iteration with 10 threads, T2-1 [Thread 272]: status=201 latency=1831.3 ms , Thread object_id: 272 +Iteration with 10 threads, T7-2 [Thread 240]: status=201 latency=575.8 ms , Thread object_id: 240 +Iteration with 10 threads, T4-2 [Thread 216]: status=201 latency=649.9 ms , Thread object_id: 216 +Iteration with 10 threads, T3-2 [Thread 232]: status=201 latency=645.5 ms , Thread object_id: 232 +Iteration with 10 threads, T5-2 [Thread 256]: status=201 latency=628.5 ms , Thread object_id: 256 +Iteration with 10 threads, T1-2 [Thread 248]: status=201 latency=654.5 ms , Thread object_id: 248 +Iteration with 10 threads, T9-2 [Thread 224]: status=201 latency=752.5 ms , Thread object_id: 224 +Iteration with 10 threads, T6-2 [Thread 264]: status=201 latency=769.2 ms , Thread object_id: 264 +Iteration with 10 threads, T2-2 [Thread 272]: status=201 latency=485.7 ms , Thread object_id: 272 +Iteration with 10 threads, T10-1 [Thread 280]: status=201 latency=2852.9 ms , Thread object_id: 280 +Iteration with 10 threads, T8-1 [Thread 288]: status=201 latency=2890.8 ms , Thread object_id: 288 +Iteration with 10 threads, T8-2 [Thread 288]: status=201 latency=595.3 ms , Thread object_id: 288 +Iteration with 10 threads, T10-2 [Thread 280]: status=201 latency=717.7 ms , Thread object_id: 280 + + +--- Iteration 2 with 20 threads --- +Iteration with 20 threads, T6-1 [Thread 296]: status=201 latency=719.2 ms , Thread object_id: 296 +Iteration with 20 threads, T7-1 [Thread 304]: status=201 latency=725.0 ms , Thread object_id: 304 +Iteration with 20 threads, T5-1 [Thread 312]: status=201 latency=775.7 ms , Thread object_id: 312 +Iteration with 20 threads, T2-1 [Thread 320]: status=201 latency=788.0 ms , Thread object_id: 320 +Iteration with 20 threads, T1-1 [Thread 328]: status=201 latency=808.1 ms , Thread object_id: 328 +Iteration with 20 threads, T10-1 [Thread 336]: status=201 latency=814.0 ms , Thread object_id: 336 +Iteration with 20 threads, T3-1 [Thread 344]: status=201 latency=830.5 ms , Thread object_id: 344 +Iteration with 20 threads, T4-1 [Thread 352]: status=201 latency=879.8 ms , Thread object_id: 352 +Iteration with 20 threads, T9-1 [Thread 360]: status=201 latency=895.6 ms , Thread object_id: 360 +Iteration with 20 threads, T8-1 [Thread 368]: status=201 latency=899.4 ms , Thread object_id: 368 +Iteration with 20 threads, T6-2 [Thread 296]: status=201 latency=675.8 ms , Thread object_id: 296 +Iteration with 20 threads, T17-1 [Thread 376]: status=201 latency=1428.7 ms , Thread object_id: 376 +Iteration with 20 threads, T10-2 [Thread 336]: status=201 latency=658.6 ms , Thread object_id: 336 +Iteration with 20 threads, T7-2 [Thread 304]: status=201 latency=758.1 ms , Thread object_id: 304 +Iteration with 20 threads, T5-2 [Thread 312]: status=201 latency=724.0 ms , Thread object_id: 312 +Iteration with 20 threads, T1-2 [Thread 328]: status=201 latency=696.6 ms , Thread object_id: 328 +Iteration with 20 threads, T2-2 [Thread 320]: status=201 latency=815.0 ms , Thread object_id: 320 +Iteration with 20 threads, T11-1 [Thread 384]: status=201 latency=1618.7 ms , Thread object_id: 384 +Iteration with 20 threads, T3-2 [Thread 344]: status=201 latency=794.9 ms , Thread object_id: 344 +Iteration with 20 threads, T12-1 [Thread 392]: status=201 latency=1646.0 ms , Thread object_id: 392 +Iteration with 20 threads, T9-2 [Thread 360]: status=201 latency=760.3 ms , Thread object_id: 360 +Iteration with 20 threads, T18-1 [Thread 400]: status=201 latency=1660.7 ms , Thread object_id: 400 +Iteration with 20 threads, T19-1 [Thread 408]: status=201 latency=1688.2 ms , Thread object_id: 408 +Iteration with 20 threads, T15-1 [Thread 416]: status=201 latency=1716.7 ms , Thread object_id: 416 +Iteration with 20 threads, T16-1 [Thread 424]: status=201 latency=1727.5 ms , Thread object_id: 424 +Iteration with 20 threads, T20-1 [Thread 432]: status=201 latency=1743.2 ms , Thread object_id: 432 +Iteration with 20 threads, T4-2 [Thread 352]: status=201 latency=980.7 ms , Thread object_id: 352 +Iteration with 20 threads, T13-1 [Thread 440]: status=201 latency=1849.7 ms , Thread object_id: 440 +Iteration with 20 threads, T14-1 [Thread 448]: status=201 latency=1863.2 ms , Thread object_id: 448 +Iteration with 20 threads, T17-2 [Thread 376]: status=201 latency=617.4 ms , Thread object_id: 376 +Iteration with 20 threads, T12-2 [Thread 392]: status=201 latency=504.9 ms , Thread object_id: 392 +Iteration with 20 threads, T18-2 [Thread 400]: status=201 latency=551.4 ms , Thread object_id: 400 +Iteration with 20 threads, T16-2 [Thread 424]: status=201 latency=504.8 ms , Thread object_id: 424 +Iteration with 20 threads, T11-2 [Thread 384]: status=201 latency=689.5 ms , Thread object_id: 384 +Iteration with 20 threads, T19-2 [Thread 408]: status=201 latency=567.8 ms , Thread object_id: 408 +Iteration with 20 threads, T20-2 [Thread 432]: status=201 latency=555.7 ms , Thread object_id: 432 +Iteration with 20 threads, T15-2 [Thread 416]: status=201 latency=638.5 ms , Thread object_id: 416 +Iteration with 20 threads, T14-2 [Thread 448]: status=201 latency=571.0 ms , Thread object_id: 448 +Iteration with 20 threads, T13-2 [Thread 440]: status=201 latency=756.8 ms , Thread object_id: 440 +Iteration with 20 threads, T8-2 [Thread 368]: status=201 latency=1861.4 ms , Thread object_id: 368 + + +--- Iteration 3 with 30 threads --- +Iteration with 30 threads, T17-1 [Thread 456]: status=201 latency=815.0 ms , Thread object_id: 456 +Iteration with 30 threads, T16-1 [Thread 464]: status=201 latency=834.4 ms , Thread object_id: 464 +Iteration with 30 threads, T9-1 [Thread 472]: status=201 latency=922.5 ms , Thread object_id: 472 +Iteration with 30 threads, T11-1 [Thread 480]: status=201 latency=920.3 ms , Thread object_id: 480 +Iteration with 30 threads, T13-1 [Thread 488]: status=201 latency=923.7 ms , Thread object_id: 488 +Iteration with 30 threads, T4-1 [Thread 496]: status=201 latency=951.8 ms , Thread object_id: 496 +Iteration with 30 threads, T7-1 [Thread 504]: status=201 latency=957.6 ms , Thread object_id: 504 +Iteration with 30 threads, T18-1 [Thread 512]: status=201 latency=954.3 ms , Thread object_id: 512 +Iteration with 30 threads, T12-1 [Thread 520]: status=201 latency=970.8 ms , Thread object_id: 520 +Iteration with 30 threads, T20-1 [Thread 528]: status=201 latency=969.4 ms , Thread object_id: 528 +Iteration with 30 threads, T1-1 [Thread 536]: status=201 latency=1027.7 ms , Thread object_id: 536 +Iteration with 30 threads, T2-1 [Thread 544]: status=201 latency=1030.0 ms , Thread object_id: 544 +Iteration with 30 threads, T3-1 [Thread 552]: status=201 latency=1078.2 ms , Thread object_id: 552 +Iteration with 30 threads, T10-1 [Thread 560]: status=201 latency=1077.2 ms , Thread object_id: 560 +Iteration with 30 threads, T14-1 [Thread 568]: status=201 latency=1073.1 ms , Thread object_id: 568 +Iteration with 30 threads, T19-1 [Thread 576]: status=201 latency=1129.8 ms , Thread object_id: 576 +Iteration with 30 threads, T8-1 [Thread 584]: status=201 latency=1218.6 ms , Thread object_id: 584 +Iteration with 30 threads, T5-1 [Thread 592]: status=201 latency=1286.5 ms , Thread object_id: 592 +Iteration with 30 threads, T6-1 [Thread 600]: status=201 latency=1398.9 ms , Thread object_id: 600 +Iteration with 30 threads, T15-1 [Thread 608]: status=201 latency=1389.7 ms , Thread object_id: 608 +Iteration with 30 threads, T25-1 [Thread 616]: status=201 latency=1356.6 ms , Thread object_id: 616 +Iteration with 30 threads, T28-1 [Thread 624]: status=201 latency=1366.0 ms , Thread object_id: 624 +Iteration with 30 threads, T16-2 [Thread 464]: status=201 latency=673.2 ms , Thread object_id: 464 +Iteration with 30 threads, T22-1 [Thread 632]: status=201 latency=1492.2 ms , Thread object_id: 632 +Iteration with 30 threads, T24-1 [Thread 640]: status=201 latency=1480.2 ms , Thread object_id: 640 +Iteration with 30 threads, T23-1 [Thread 648]: status=201 latency=1492.0 ms , Thread object_id: 648 +Iteration with 30 threads, T1-2 [Thread 536]: status=201 latency=552.4 ms , Thread object_id: 536 +Iteration with 30 threads, T4-2 [Thread 496]: status=201 latency=636.4 ms , Thread object_id: 496 +Iteration with 30 threads, T26-1 [Thread 656]: status=201 latency=1522.0 ms , Thread object_id: 656 +Iteration with 30 threads, T2-2 [Thread 544]: status=201 latency=566.2 ms , Thread object_id: 544 +Iteration with 30 threads, T18-2 [Thread 512]: status=201 latency=619.1 ms , Thread object_id: 512 +Iteration with 30 threads, T30-1 [Thread 664]: status=201 latency=1504.0 ms , Thread object_id: 664 +Iteration with 30 threads, T7-2 [Thread 504]: status=201 latency=639.4 ms , Thread object_id: 504 +Iteration with 30 threads, T21-1 [Thread 672]: status=201 latency=1592.1 ms , Thread object_id: 672 +Iteration with 30 threads, T11-2 [Thread 480]: status=201 latency=697.7 ms , Thread object_id: 480 +Iteration with 30 threads, T12-2 [Thread 520]: status=201 latency=657.3 ms , Thread object_id: 520 +Iteration with 30 threads, T3-2 [Thread 552]: status=201 latency=564.5 ms , Thread object_id: 552 +Iteration with 30 threads, T10-2 [Thread 560]: status=201 latency=626.9 ms , Thread object_id: 560 +Iteration with 30 threads, T17-2 [Thread 456]: status=201 latency=886.0 ms , Thread object_id: 456 +Iteration with 30 threads, T29-1 [Thread 680]: status=201 latency=1646.8 ms , Thread object_id: 680 +Iteration with 30 threads, T9-2 [Thread 472]: status=201 latency=829.1 ms , Thread object_id: 472 +Iteration with 30 threads, T8-2 [Thread 584]: status=201 latency=572.5 ms , Thread object_id: 584 +Iteration with 30 threads, T19-2 [Thread 576]: status=201 latency=682.2 ms , Thread object_id: 576 +Iteration with 30 threads, T14-2 [Thread 568]: status=201 latency=746.1 ms , Thread object_id: 568 +Iteration with 30 threads, T20-2 [Thread 528]: status=201 latency=854.9 ms , Thread object_id: 528 +Iteration with 30 threads, T27-1 [Thread 688]: status=201 latency=1784.5 ms , Thread object_id: 688 +Iteration with 30 threads, T5-2 [Thread 592]: status=201 latency=602.9 ms , Thread object_id: 592 +Iteration with 30 threads, T13-2 [Thread 488]: status=201 latency=977.3 ms , Thread object_id: 488 +Iteration with 30 threads, T15-2 [Thread 608]: status=201 latency=555.8 ms , Thread object_id: 608 +Iteration with 30 threads, T28-2 [Thread 624]: status=201 latency=571.0 ms , Thread object_id: 624 +Iteration with 30 threads, T6-2 [Thread 600]: status=201 latency=667.6 ms , Thread object_id: 600 +Iteration with 30 threads, T22-2 [Thread 632]: status=201 latency=540.5 ms , Thread object_id: 632 +Iteration with 30 threads, T25-2 [Thread 616]: status=201 latency=701.8 ms , Thread object_id: 616 +Iteration with 30 threads, T26-2 [Thread 656]: status=201 latency=576.1 ms , Thread object_id: 656 +Iteration with 30 threads, T29-2 [Thread 680]: status=201 latency=471.7 ms , Thread object_id: 680 +Iteration with 30 threads, T24-2 [Thread 640]: status=201 latency=680.5 ms , Thread object_id: 640 +Iteration with 30 threads, T30-2 [Thread 664]: status=201 latency=637.5 ms , Thread object_id: 664 +Iteration with 30 threads, T21-2 [Thread 672]: status=201 latency=638.4 ms , Thread object_id: 672 +Iteration with 30 threads, T23-2 [Thread 648]: status=201 latency=738.2 ms , Thread object_id: 648 +Iteration with 30 threads, T27-2 [Thread 688]: status=201 latency=709.0 ms , Thread object_id: 688 + + +--- Iteration 4 with 40 threads --- +Iteration with 40 threads, T4-1 [Thread 696]: status=201 latency=1106.2 ms , Thread object_id: 696 +Iteration with 40 threads, T13-1 [Thread 704]: status=201 latency=1103.4 ms , Thread object_id: 704 +Iteration with 40 threads, T26-1 [Thread 712]: status=201 latency=1083.8 ms , Thread object_id: 712 +Iteration with 40 threads, T17-1 [Thread 720]: status=201 latency=1098.5 ms , Thread object_id: 720 +Iteration with 40 threads, T9-1 [Thread 728]: status=201 latency=1116.5 ms , Thread object_id: 728 +Iteration with 40 threads, T22-1 [Thread 736]: status=201 latency=1095.6 ms , Thread object_id: 736 +Iteration with 40 threads, T11-1 [Thread 744]: status=201 latency=1124.0 ms , Thread object_id: 744 +Iteration with 40 threads, T18-1 [Thread 752]: status=201 latency=1159.6 ms , Thread object_id: 752 +Iteration with 40 threads, T19-1 [Thread 760]: status=201 latency=1169.6 ms , Thread object_id: 760 +Iteration with 40 threads, T5-1 [Thread 768]: status=201 latency=1206.8 ms , Thread object_id: 768 +Iteration with 40 threads, T20-1 [Thread 776]: status=201 latency=1190.8 ms , Thread object_id: 776 +Iteration with 40 threads, T2-1 [Thread 784]: status=201 latency=1233.7 ms , Thread object_id: 784 +Iteration with 40 threads, T29-1 [Thread 792]: status=201 latency=1200.2 ms , Thread object_id: 792 +Iteration with 40 threads, T25-1 [Thread 800]: status=201 latency=1207.7 ms , Thread object_id: 800 +Iteration with 40 threads, T3-1 [Thread 808]: status=201 latency=1286.8 ms , Thread object_id: 808 +Iteration with 40 threads, T28-1 [Thread 816]: status=201 latency=1264.5 ms , Thread object_id: 816 +Iteration with 40 threads, T7-1 [Thread 824]: status=201 latency=1307.4 ms , Thread object_id: 824 +Iteration with 40 threads, T10-1 [Thread 832]: status=201 latency=1334.6 ms , Thread object_id: 832 +Iteration with 40 threads, T16-1 [Thread 840]: status=201 latency=1327.4 ms , Thread object_id: 840 +Iteration with 40 threads, T6-1 [Thread 848]: status=201 latency=1358.3 ms , Thread object_id: 848 +Iteration with 40 threads, T12-1 [Thread 856]: status=201 latency=1373.6 ms , Thread object_id: 856 +Iteration with 40 threads, T30-1 [Thread 864]: status=201 latency=1431.6 ms , Thread object_id: 864 +Iteration with 40 threads, T27-1 [Thread 872]: status=201 latency=1441.4 ms , Thread object_id: 872 +Iteration with 40 threads, T15-1 [Thread 880]: status=201 latency=1467.3 ms , Thread object_id: 880 +Iteration with 40 threads, T14-1 [Thread 888]: status=201 latency=1470.9 ms , Thread object_id: 888 +Iteration with 40 threads, T8-1 [Thread 896]: status=201 latency=1492.8 ms , Thread object_id: 896 +Iteration with 40 threads, T1-1 [Thread 904]: status=201 latency=1582.0 ms , Thread object_id: 904 +Iteration with 40 threads, T23-1 [Thread 912]: status=201 latency=1550.5 ms , Thread object_id: 912 +Iteration with 40 threads, T24-1 [Thread 920]: status=201 latency=1576.0 ms , Thread object_id: 920 +Iteration with 40 threads, T21-1 [Thread 928]: status=201 latency=1595.4 ms , Thread object_id: 928 +Iteration with 40 threads, T22-2 [Thread 736]: status=201 latency=556.8 ms , Thread object_id: 736 +Iteration with 40 threads, T4-2 [Thread 696]: status=201 latency=578.9 ms , Thread object_id: 696 +Iteration with 40 threads, T11-2 [Thread 744]: status=201 latency=549.0 ms , Thread object_id: 744 +Iteration with 40 threads, T26-2 [Thread 712]: status=201 latency=641.7 ms , Thread object_id: 712 +Iteration with 40 threads, T3-2 [Thread 808]: status=201 latency=530.4 ms , Thread object_id: 808 +Iteration with 40 threads, T19-2 [Thread 760]: status=201 latency=619.5 ms , Thread object_id: 760 +Iteration with 40 threads, T9-2 [Thread 728]: status=201 latency=768.1 ms , Thread object_id: 728 +Iteration with 40 threads, T17-2 [Thread 720]: status=201 latency=770.4 ms , Thread object_id: 720 +Iteration with 40 threads, T13-2 [Thread 704]: status=201 latency=775.2 ms , Thread object_id: 704 +Iteration with 40 threads, T18-2 [Thread 752]: status=201 latency=706.4 ms , Thread object_id: 752 +Iteration with 40 threads, T16-2 [Thread 840]: status=201 latency=543.2 ms , Thread object_id: 840 +Iteration with 40 threads, T5-2 [Thread 768]: status=201 latency=710.6 ms , Thread object_id: 768 +Iteration with 40 threads, T10-2 [Thread 832]: status=201 latency=573.7 ms , Thread object_id: 832 +Iteration with 40 threads, T28-2 [Thread 816]: status=201 latency=715.0 ms , Thread object_id: 816 +Iteration with 40 threads, T25-2 [Thread 800]: status=201 latency=776.6 ms , Thread object_id: 800 +Iteration with 40 threads, T29-2 [Thread 792]: status=201 latency=779.2 ms , Thread object_id: 792 +Iteration with 40 threads, T6-2 [Thread 848]: status=201 latency=658.7 ms , Thread object_id: 848 +Iteration with 40 threads, T2-2 [Thread 784]: status=201 latency=791.2 ms , Thread object_id: 784 +Iteration with 40 threads, T12-2 [Thread 856]: status=201 latency=633.7 ms , Thread object_id: 856 +Iteration with 40 threads, T7-2 [Thread 824]: status=201 latency=716.5 ms , Thread object_id: 824 +Iteration with 40 threads, T20-2 [Thread 776]: status=201 latency=810.3 ms , Thread object_id: 776 +Iteration with 40 threads, T27-2 [Thread 872]: status=201 latency=550.3 ms , Thread object_id: 872 +Iteration with 40 threads, T15-2 [Thread 880]: status=201 latency=601.7 ms , Thread object_id: 880 +Iteration with 40 threads, T14-2 [Thread 888]: status=201 latency=609.4 ms , Thread object_id: 888 +Iteration with 40 threads, T8-2 [Thread 896]: status=201 latency=587.9 ms , Thread object_id: 896 +Iteration with 40 threads, T23-2 [Thread 912]: status=201 latency=547.0 ms , Thread object_id: 912 +Iteration with 40 threads, T21-2 [Thread 928]: status=201 latency=560.8 ms , Thread object_id: 928 +Iteration with 40 threads, T30-2 [Thread 864]: status=201 latency=730.3 ms , Thread object_id: 864 +Iteration with 40 threads, T24-2 [Thread 920]: status=201 latency=646.8 ms , Thread object_id: 920 +Iteration with 40 threads, T1-2 [Thread 904]: status=201 latency=703.0 ms , Thread object_id: 904 +Iteration with 40 threads, T40-1 [Thread 936]: status=201 latency=4772.4 ms , Thread object_id: 936 +Iteration with 40 threads, T35-1 [Thread 944]: status=201 latency=4821.9 ms , Thread object_id: 944 +Iteration with 40 threads, T31-1 [Thread 952]: status=201 latency=4864.8 ms , Thread object_id: 952 +Iteration with 40 threads, T33-1 [Thread 960]: status=201 latency=4848.7 ms , Thread object_id: 960 +Iteration with 40 threads, T38-1 [Thread 968]: status=201 latency=4817.1 ms , Thread object_id: 968 +Iteration with 40 threads, T39-1 [Thread 976]: status=201 latency=4813.2 ms , Thread object_id: 976 +Iteration with 40 threads, T32-1 [Thread 984]: status=201 latency=4883.2 ms , Thread object_id: 984 +Iteration with 40 threads, T36-1 [Thread 992]: status=201 latency=4857.3 ms , Thread object_id: 992 +Iteration with 40 threads, T37-1 [Thread 1000]: status=201 latency=4925.7 ms , Thread object_id: 1000 +Iteration with 40 threads, T34-1 [Thread 1008]: status=201 latency=4948.9 ms , Thread object_id: 1008 +Iteration with 40 threads, T40-2 [Thread 936]: status=201 latency=534.7 ms , Thread object_id: 936 +Iteration with 40 threads, T38-2 [Thread 968]: status=201 latency=512.6 ms , Thread object_id: 968 +Iteration with 40 threads, T39-2 [Thread 976]: status=201 latency=550.7 ms , Thread object_id: 976 +Iteration with 40 threads, T34-2 [Thread 1008]: status=201 latency=524.5 ms , Thread object_id: 1008 +Iteration with 40 threads, T32-2 [Thread 984]: status=201 latency=612.9 ms , Thread object_id: 984 +Iteration with 40 threads, T35-2 [Thread 944]: status=201 latency=684.8 ms , Thread object_id: 944 +Iteration with 40 threads, T31-2 [Thread 952]: status=201 latency=693.6 ms , Thread object_id: 952 +Iteration with 40 threads, T33-2 [Thread 960]: status=201 latency=741.3 ms , Thread object_id: 960 +Iteration with 40 threads, T36-2 [Thread 992]: status=201 latency=788.6 ms , Thread object_id: 992 +Iteration with 40 threads, T37-2 [Thread 1000]: status=201 latency=735.2 ms , Thread object_id: 1000 + + +--- Iteration 5 with 50 threads --- +Iteration with 50 threads, T1-1 [Thread 1016]: status=201 latency=1055.5 ms , Thread object_id: 1016 +Iteration with 50 threads, T13-1 [Thread 1024]: status=201 latency=1054.0 ms , Thread object_id: 1024 +Iteration with 50 threads, T7-1 [Thread 1032]: status=201 latency=1077.0 ms , Thread object_id: 1032 +Iteration with 50 threads, T5-1 [Thread 1040]: status=201 latency=1148.3 ms , Thread object_id: 1040 +Iteration with 50 threads, T11-1 [Thread 1048]: status=201 latency=1183.2 ms , Thread object_id: 1048 +Iteration with 50 threads, T23-1 [Thread 1056]: status=201 latency=1187.7 ms , Thread object_id: 1056 +Iteration with 50 threads, T4-1 [Thread 1064]: status=201 latency=1215.1 ms , Thread object_id: 1064 +Iteration with 50 threads, T3-1 [Thread 1072]: status=201 latency=1220.2 ms , Thread object_id: 1072 +Iteration with 50 threads, T9-1 [Thread 1080]: status=201 latency=1241.2 ms , Thread object_id: 1080 +Iteration with 50 threads, T6-1 [Thread 1088]: status=201 latency=1264.7 ms , Thread object_id: 1088 +Iteration with 50 threads, T8-1 [Thread 1096]: status=201 latency=1266.0 ms , Thread object_id: 1096 +Iteration with 50 threads, T33-1 [Thread 1104]: status=201 latency=1292.0 ms , Thread object_id: 1104 +Iteration with 50 threads, T18-1 [Thread 1112]: status=201 latency=1313.4 ms , Thread object_id: 1112 +Iteration with 50 threads, T14-1 [Thread 1120]: status=201 latency=1320.1 ms , Thread object_id: 1120 +Iteration with 50 threads, T19-1 [Thread 1128]: status=201 latency=1319.4 ms , Thread object_id: 1128 +Iteration with 50 threads, T30-1 [Thread 1136]: status=201 latency=1313.0 ms , Thread object_id: 1136 +Iteration with 50 threads, T24-1 [Thread 1144]: status=201 latency=1364.3 ms , Thread object_id: 1144 +Iteration with 50 threads, T12-1 [Thread 1152]: status=201 latency=1395.2 ms , Thread object_id: 1152 +Iteration with 50 threads, T40-1 [Thread 1160]: status=201 latency=1400.0 ms , Thread object_id: 1160 +Iteration with 50 threads, T36-1 [Thread 1168]: status=201 latency=1405.5 ms , Thread object_id: 1168 +Iteration with 50 threads, T35-1 [Thread 1176]: status=201 latency=1408.4 ms , Thread object_id: 1176 +Iteration with 50 threads, T32-1 [Thread 1184]: status=201 latency=1503.5 ms , Thread object_id: 1184 +Iteration with 50 threads, T31-1 [Thread 1192]: status=201 latency=1507.7 ms , Thread object_id: 1192 +Iteration with 50 threads, T29-1 [Thread 1200]: status=201 latency=1513.5 ms , Thread object_id: 1200 +Iteration with 50 threads, T28-1 [Thread 1208]: status=201 latency=1553.6 ms , Thread object_id: 1208 +Iteration with 50 threads, T22-1 [Thread 1216]: status=201 latency=1561.9 ms , Thread object_id: 1216 +Iteration with 50 threads, T16-1 [Thread 1224]: status=201 latency=1579.0 ms , Thread object_id: 1224 +Iteration with 50 threads, T37-1 [Thread 1232]: status=201 latency=1558.6 ms , Thread object_id: 1232 +Iteration with 50 threads, T2-1 [Thread 1240]: status=201 latency=1601.5 ms , Thread object_id: 1240 +Iteration with 50 threads, T17-1 [Thread 1248]: status=201 latency=1582.9 ms , Thread object_id: 1248 +Iteration with 50 threads, T27-1 [Thread 1256]: status=201 latency=1573.5 ms , Thread object_id: 1256 +Iteration with 50 threads, T39-1 [Thread 1264]: status=201 latency=1624.0 ms , Thread object_id: 1264 +Iteration with 50 threads, T25-1 [Thread 1272]: status=201 latency=1639.9 ms , Thread object_id: 1272 +Iteration with 50 threads, T20-1 [Thread 1280]: status=201 latency=1660.1 ms , Thread object_id: 1280 +Iteration with 50 threads, T38-1 [Thread 1288]: status=201 latency=1643.8 ms , Thread object_id: 1288 +Iteration with 50 threads, T34-1 [Thread 1296]: status=201 latency=1669.0 ms , Thread object_id: 1296 +Iteration with 50 threads, T50-1 [Thread 1304]: status=201 latency=1655.7 ms , Thread object_id: 1304 +Iteration with 50 threads, T45-1 [Thread 1312]: status=201 latency=1689.3 ms , Thread object_id: 1312 +Iteration with 50 threads, T4-2 [Thread 1064]: status=201 latency=545.4 ms , Thread object_id: 1064 +Iteration with 50 threads, T41-1 [Thread 1320]: status=201 latency=1722.0 ms , Thread object_id: 1320 +Iteration with 50 threads, T47-1 [Thread 1328]: status=201 latency=1682.8 ms , Thread object_id: 1328 +Iteration with 50 threads, T49-1 [Thread 1336]: status=201 latency=1673.6 ms , Thread object_id: 1336 +Iteration with 50 threads, T42-1 [Thread 1344]: status=201 latency=1720.2 ms , Thread object_id: 1344 +Iteration with 50 threads, T48-1 [Thread 1352]: status=201 latency=1716.5 ms , Thread object_id: 1352 +Iteration with 50 threads, T9-2 [Thread 1080]: status=201 latency=554.2 ms , Thread object_id: 1080 +Iteration with 50 threads, T1-2 [Thread 1016]: status=201 latency=806.2 ms , Thread object_id: 1016 +Iteration with 50 threads, T23-2 [Thread 1056]: status=201 latency=646.8 ms , Thread object_id: 1056 +Iteration with 50 threads, T13-2 [Thread 1024]: status=201 latency=792.4 ms , Thread object_id: 1024 +Iteration with 50 threads, T5-2 [Thread 1040]: status=201 latency=708.1 ms , Thread object_id: 1040 +Iteration with 50 threads, T43-1 [Thread 1360]: status=201 latency=1804.4 ms , Thread object_id: 1360 +Iteration with 50 threads, T10-1 [Thread 1368]: status=201 latency=1855.7 ms , Thread object_id: 1368 +Iteration with 50 threads, T26-1 [Thread 1376]: status=201 latency=1862.5 ms , Thread object_id: 1376 +Iteration with 50 threads, T8-2 [Thread 1096]: status=201 latency=640.8 ms , Thread object_id: 1096 +Iteration with 50 threads, T21-1 [Thread 1384]: status=201 latency=1894.2 ms , Thread object_id: 1384 +Iteration with 50 threads, T15-1 [Thread 1392]: status=201 latency=1903.5 ms , Thread object_id: 1392 +Iteration with 50 threads, T6-2 [Thread 1088]: status=201 latency=659.0 ms , Thread object_id: 1088 +Iteration with 50 threads, T40-2 [Thread 1160]: status=201 latency=557.0 ms , Thread object_id: 1160 +Iteration with 50 threads, T11-2 [Thread 1048]: status=201 latency=833.0 ms , Thread object_id: 1048 +Iteration with 50 threads, T46-1 [Thread 1400]: status=201 latency=1953.4 ms , Thread object_id: 1400 +Iteration with 50 threads, T30-2 [Thread 1136]: status=201 latency=689.5 ms , Thread object_id: 1136 +Iteration with 50 threads, T44-1 [Thread 1408]: status=201 latency=1971.5 ms , Thread object_id: 1408 +Iteration with 50 threads, T7-2 [Thread 1032]: status=201 latency=954.6 ms , Thread object_id: 1032 +Iteration with 50 threads, T12-2 [Thread 1152]: status=201 latency=631.1 ms , Thread object_id: 1152 +Iteration with 50 threads, T36-2 [Thread 1168]: status=201 latency=595.2 ms , Thread object_id: 1168 +Iteration with 50 threads, T35-2 [Thread 1176]: status=201 latency=593.7 ms , Thread object_id: 1176 +Iteration with 50 threads, T19-2 [Thread 1128]: status=201 latency=732.2 ms , Thread object_id: 1128 +Iteration with 50 threads, T14-2 [Thread 1120]: status=201 latency=740.5 ms , Thread object_id: 1120 +Iteration with 50 threads, T32-2 [Thread 1184]: status=201 latency=576.0 ms , Thread object_id: 1184 +Iteration with 50 threads, T24-2 [Thread 1144]: status=201 latency=723.6 ms , Thread object_id: 1144 +Iteration with 50 threads, T3-2 [Thread 1072]: status=201 latency=895.2 ms , Thread object_id: 1072 +Iteration with 50 threads, T22-2 [Thread 1216]: status=201 latency=537.6 ms , Thread object_id: 1216 +Iteration with 50 threads, T33-2 [Thread 1104]: status=201 latency=794.2 ms , Thread object_id: 1104 +Iteration with 50 threads, T18-2 [Thread 1112]: status=201 latency=829.3 ms , Thread object_id: 1112 +Iteration with 50 threads, T29-2 [Thread 1200]: status=201 latency=621.1 ms , Thread object_id: 1200 +Iteration with 50 threads, T31-2 [Thread 1192]: status=201 latency=632.7 ms , Thread object_id: 1192 +Iteration with 50 threads, T25-2 [Thread 1272]: status=201 latency=536.9 ms , Thread object_id: 1272 +Iteration with 50 threads, T39-2 [Thread 1264]: status=201 latency=544.9 ms , Thread object_id: 1264 +Iteration with 50 threads, T16-2 [Thread 1224]: status=201 latency=614.4 ms , Thread object_id: 1224 +Iteration with 50 threads, T37-2 [Thread 1232]: status=201 latency=613.0 ms , Thread object_id: 1232 +Iteration with 50 threads, T38-2 [Thread 1288]: status=201 latency=602.4 ms , Thread object_id: 1288 +Iteration with 50 threads, T28-2 [Thread 1208]: status=201 latency=742.1 ms , Thread object_id: 1208 +Iteration with 50 threads, T45-2 [Thread 1312]: status=201 latency=639.5 ms , Thread object_id: 1312 +Iteration with 50 threads, T17-2 [Thread 1248]: status=201 latency=813.9 ms , Thread object_id: 1248 +Iteration with 50 threads, T43-2 [Thread 1360]: status=201 latency=563.7 ms , Thread object_id: 1360 +Iteration with 50 threads, T27-2 [Thread 1256]: status=201 latency=841.6 ms , Thread object_id: 1256 +Iteration with 50 threads, T21-2 [Thread 1384]: status=201 latency=593.5 ms , Thread object_id: 1384 +Iteration with 50 threads, T47-2 [Thread 1328]: status=201 latency=743.8 ms , Thread object_id: 1328 +Iteration with 50 threads, T15-2 [Thread 1392]: status=201 latency=591.6 ms , Thread object_id: 1392 +Iteration with 50 threads, T2-2 [Thread 1240]: status=201 latency=912.0 ms , Thread object_id: 1240 +Iteration with 50 threads, T20-2 [Thread 1280]: status=201 latency=841.3 ms , Thread object_id: 1280 +Iteration with 50 threads, T41-2 [Thread 1320]: status=201 latency=789.3 ms , Thread object_id: 1320 +Iteration with 50 threads, T44-2 [Thread 1408]: status=201 latency=538.3 ms , Thread object_id: 1408 +Iteration with 50 threads, T49-2 [Thread 1336]: status=201 latency=879.2 ms , Thread object_id: 1336 +Iteration with 50 threads, T42-2 [Thread 1344]: status=201 latency=877.2 ms , Thread object_id: 1344 +Iteration with 50 threads, T34-2 [Thread 1296]: status=201 latency=943.4 ms , Thread object_id: 1296 +Iteration with 50 threads, T46-2 [Thread 1400]: status=201 latency=614.6 ms , Thread object_id: 1400 +Iteration with 50 threads, T10-2 [Thread 1368]: status=201 latency=888.5 ms , Thread object_id: 1368 +Iteration with 50 threads, T48-2 [Thread 1352]: status=201 latency=975.3 ms , Thread object_id: 1352 +Iteration with 50 threads, T26-2 [Thread 1376]: status=201 latency=910.0 ms , Thread object_id: 1376 +Iteration with 50 threads, T50-2 [Thread 1304]: status=201 latency=1048.5 ms , Thread object_id: 1304 + + +----- SUMMARY ----- +Total calls : 300 +Average latency : 1148.9 ms +Min / Max : 471.7 / 4948.9 ms + +Status histogram: + 201 : 300 From 0a415cad4db88a58222fc26708f1d82cb47a536c Mon Sep 17 00:00:00 2001 From: Aastvik Date: Tue, 5 Aug 2025 14:42:52 +0530 Subject: [PATCH 3/3] changed results --- Samples/Authentication/src/StandAloneJWT.rb | 2 +- output2.log | 458 +++++++------------- 2 files changed, 155 insertions(+), 305 deletions(-) diff --git a/Samples/Authentication/src/StandAloneJWT.rb b/Samples/Authentication/src/StandAloneJWT.rb index 2a1fd3e..9666a7b 100644 --- a/Samples/Authentication/src/StandAloneJWT.rb +++ b/Samples/Authentication/src/StandAloneJWT.rb @@ -138,7 +138,7 @@ def do_one_payment # PARALLEL TEST DRIVER ##################################### THREAD_COUNT = 10 # concurrent threads -CALLS_PER_THREAD = 2 # calls each thread makes +CALLS_PER_THREAD = 1 # calls each thread makes mutex = Mutex.new latencies = [] # stores every latency (ms) diff --git a/output2.log b/output2.log index 01ed97a..9f2f15f 100644 --- a/output2.log +++ b/output2.log @@ -1,323 +1,173 @@ --- Iteration 1 with 10 threads --- -Iteration with 10 threads, T4-1 [Thread 216]: status=201 latency=1367.8 ms , Thread object_id: 216 -Iteration with 10 threads, T9-1 [Thread 224]: status=201 latency=1351.2 ms , Thread object_id: 224 -Iteration with 10 threads, T3-1 [Thread 232]: status=201 latency=1416.5 ms , Thread object_id: 232 -Iteration with 10 threads, T7-1 [Thread 240]: status=201 latency=1397.3 ms , Thread object_id: 240 -Iteration with 10 threads, T1-1 [Thread 248]: status=201 latency=1450.0 ms , Thread object_id: 248 -Iteration with 10 threads, T5-1 [Thread 256]: status=201 latency=1438.0 ms , Thread object_id: 256 -Iteration with 10 threads, T6-1 [Thread 264]: status=201 latency=1490.9 ms , Thread object_id: 264 -Iteration with 10 threads, T2-1 [Thread 272]: status=201 latency=1831.3 ms , Thread object_id: 272 -Iteration with 10 threads, T7-2 [Thread 240]: status=201 latency=575.8 ms , Thread object_id: 240 -Iteration with 10 threads, T4-2 [Thread 216]: status=201 latency=649.9 ms , Thread object_id: 216 -Iteration with 10 threads, T3-2 [Thread 232]: status=201 latency=645.5 ms , Thread object_id: 232 -Iteration with 10 threads, T5-2 [Thread 256]: status=201 latency=628.5 ms , Thread object_id: 256 -Iteration with 10 threads, T1-2 [Thread 248]: status=201 latency=654.5 ms , Thread object_id: 248 -Iteration with 10 threads, T9-2 [Thread 224]: status=201 latency=752.5 ms , Thread object_id: 224 -Iteration with 10 threads, T6-2 [Thread 264]: status=201 latency=769.2 ms , Thread object_id: 264 -Iteration with 10 threads, T2-2 [Thread 272]: status=201 latency=485.7 ms , Thread object_id: 272 -Iteration with 10 threads, T10-1 [Thread 280]: status=201 latency=2852.9 ms , Thread object_id: 280 -Iteration with 10 threads, T8-1 [Thread 288]: status=201 latency=2890.8 ms , Thread object_id: 288 -Iteration with 10 threads, T8-2 [Thread 288]: status=201 latency=595.3 ms , Thread object_id: 288 -Iteration with 10 threads, T10-2 [Thread 280]: status=201 latency=717.7 ms , Thread object_id: 280 +Iteration with 10 threads, T6-1 [Thread 216]: status=201 latency=1389.2 ms , Thread object_id: 216 +Iteration with 10 threads, T1-1 [Thread 224]: status=201 latency=1419.9 ms , Thread object_id: 224 +Iteration with 10 threads, T9-1 [Thread 232]: status=201 latency=1378.6 ms , Thread object_id: 232 +Iteration with 10 threads, T10-1 [Thread 240]: status=201 latency=1388.1 ms , Thread object_id: 240 +Iteration with 10 threads, T4-1 [Thread 248]: status=201 latency=1422.4 ms , Thread object_id: 248 +Iteration with 10 threads, T5-1 [Thread 256]: status=201 latency=1426.4 ms , Thread object_id: 256 +Iteration with 10 threads, T7-1 [Thread 264]: status=201 latency=1415.6 ms , Thread object_id: 264 +Iteration with 10 threads, T2-1 [Thread 272]: status=201 latency=1451.3 ms , Thread object_id: 272 +Iteration with 10 threads, T8-1 [Thread 280]: status=201 latency=1423.9 ms , Thread object_id: 280 +Iteration with 10 threads, T3-1 [Thread 288]: status=201 latency=1537.5 ms , Thread object_id: 288 --- Iteration 2 with 20 threads --- -Iteration with 20 threads, T6-1 [Thread 296]: status=201 latency=719.2 ms , Thread object_id: 296 -Iteration with 20 threads, T7-1 [Thread 304]: status=201 latency=725.0 ms , Thread object_id: 304 -Iteration with 20 threads, T5-1 [Thread 312]: status=201 latency=775.7 ms , Thread object_id: 312 -Iteration with 20 threads, T2-1 [Thread 320]: status=201 latency=788.0 ms , Thread object_id: 320 -Iteration with 20 threads, T1-1 [Thread 328]: status=201 latency=808.1 ms , Thread object_id: 328 -Iteration with 20 threads, T10-1 [Thread 336]: status=201 latency=814.0 ms , Thread object_id: 336 -Iteration with 20 threads, T3-1 [Thread 344]: status=201 latency=830.5 ms , Thread object_id: 344 -Iteration with 20 threads, T4-1 [Thread 352]: status=201 latency=879.8 ms , Thread object_id: 352 -Iteration with 20 threads, T9-1 [Thread 360]: status=201 latency=895.6 ms , Thread object_id: 360 -Iteration with 20 threads, T8-1 [Thread 368]: status=201 latency=899.4 ms , Thread object_id: 368 -Iteration with 20 threads, T6-2 [Thread 296]: status=201 latency=675.8 ms , Thread object_id: 296 -Iteration with 20 threads, T17-1 [Thread 376]: status=201 latency=1428.7 ms , Thread object_id: 376 -Iteration with 20 threads, T10-2 [Thread 336]: status=201 latency=658.6 ms , Thread object_id: 336 -Iteration with 20 threads, T7-2 [Thread 304]: status=201 latency=758.1 ms , Thread object_id: 304 -Iteration with 20 threads, T5-2 [Thread 312]: status=201 latency=724.0 ms , Thread object_id: 312 -Iteration with 20 threads, T1-2 [Thread 328]: status=201 latency=696.6 ms , Thread object_id: 328 -Iteration with 20 threads, T2-2 [Thread 320]: status=201 latency=815.0 ms , Thread object_id: 320 -Iteration with 20 threads, T11-1 [Thread 384]: status=201 latency=1618.7 ms , Thread object_id: 384 -Iteration with 20 threads, T3-2 [Thread 344]: status=201 latency=794.9 ms , Thread object_id: 344 -Iteration with 20 threads, T12-1 [Thread 392]: status=201 latency=1646.0 ms , Thread object_id: 392 -Iteration with 20 threads, T9-2 [Thread 360]: status=201 latency=760.3 ms , Thread object_id: 360 -Iteration with 20 threads, T18-1 [Thread 400]: status=201 latency=1660.7 ms , Thread object_id: 400 -Iteration with 20 threads, T19-1 [Thread 408]: status=201 latency=1688.2 ms , Thread object_id: 408 -Iteration with 20 threads, T15-1 [Thread 416]: status=201 latency=1716.7 ms , Thread object_id: 416 -Iteration with 20 threads, T16-1 [Thread 424]: status=201 latency=1727.5 ms , Thread object_id: 424 -Iteration with 20 threads, T20-1 [Thread 432]: status=201 latency=1743.2 ms , Thread object_id: 432 -Iteration with 20 threads, T4-2 [Thread 352]: status=201 latency=980.7 ms , Thread object_id: 352 -Iteration with 20 threads, T13-1 [Thread 440]: status=201 latency=1849.7 ms , Thread object_id: 440 -Iteration with 20 threads, T14-1 [Thread 448]: status=201 latency=1863.2 ms , Thread object_id: 448 -Iteration with 20 threads, T17-2 [Thread 376]: status=201 latency=617.4 ms , Thread object_id: 376 -Iteration with 20 threads, T12-2 [Thread 392]: status=201 latency=504.9 ms , Thread object_id: 392 -Iteration with 20 threads, T18-2 [Thread 400]: status=201 latency=551.4 ms , Thread object_id: 400 -Iteration with 20 threads, T16-2 [Thread 424]: status=201 latency=504.8 ms , Thread object_id: 424 -Iteration with 20 threads, T11-2 [Thread 384]: status=201 latency=689.5 ms , Thread object_id: 384 -Iteration with 20 threads, T19-2 [Thread 408]: status=201 latency=567.8 ms , Thread object_id: 408 -Iteration with 20 threads, T20-2 [Thread 432]: status=201 latency=555.7 ms , Thread object_id: 432 -Iteration with 20 threads, T15-2 [Thread 416]: status=201 latency=638.5 ms , Thread object_id: 416 -Iteration with 20 threads, T14-2 [Thread 448]: status=201 latency=571.0 ms , Thread object_id: 448 -Iteration with 20 threads, T13-2 [Thread 440]: status=201 latency=756.8 ms , Thread object_id: 440 -Iteration with 20 threads, T8-2 [Thread 368]: status=201 latency=1861.4 ms , Thread object_id: 368 +Iteration with 20 threads, T4-1 [Thread 296]: status=201 latency=756.7 ms , Thread object_id: 296 +Iteration with 20 threads, T2-1 [Thread 304]: status=201 latency=779.6 ms , Thread object_id: 304 +Iteration with 20 threads, T7-1 [Thread 312]: status=201 latency=809.7 ms , Thread object_id: 312 +Iteration with 20 threads, T8-1 [Thread 320]: status=201 latency=813.1 ms , Thread object_id: 320 +Iteration with 20 threads, T1-1 [Thread 328]: status=201 latency=880.1 ms , Thread object_id: 328 +Iteration with 20 threads, T9-1 [Thread 336]: status=201 latency=881.1 ms , Thread object_id: 336 +Iteration with 20 threads, T3-1 [Thread 344]: status=201 latency=973.6 ms , Thread object_id: 344 +Iteration with 20 threads, T10-1 [Thread 352]: status=201 latency=1135.1 ms , Thread object_id: 352 +Iteration with 20 threads, T5-1 [Thread 360]: status=201 latency=1155.3 ms , Thread object_id: 360 +Iteration with 20 threads, T6-1 [Thread 368]: status=201 latency=1159.9 ms , Thread object_id: 368 +Iteration with 20 threads, T16-1 [Thread 376]: status=201 latency=1289.8 ms , Thread object_id: 376 +Iteration with 20 threads, T17-1 [Thread 384]: status=201 latency=1340.9 ms , Thread object_id: 384 +Iteration with 20 threads, T20-1 [Thread 392]: status=201 latency=1325.6 ms , Thread object_id: 392 +Iteration with 20 threads, T11-1 [Thread 400]: status=201 latency=1414.4 ms , Thread object_id: 400 +Iteration with 20 threads, T12-1 [Thread 408]: status=201 latency=1401.6 ms , Thread object_id: 408 +Iteration with 20 threads, T14-1 [Thread 416]: status=201 latency=1389.0 ms , Thread object_id: 416 +Iteration with 20 threads, T15-1 [Thread 424]: status=201 latency=1447.9 ms , Thread object_id: 424 +Iteration with 20 threads, T18-1 [Thread 432]: status=201 latency=1427.7 ms , Thread object_id: 432 +Iteration with 20 threads, T13-1 [Thread 440]: status=201 latency=1529.5 ms , Thread object_id: 440 +Iteration with 20 threads, T19-1 [Thread 448]: status=201 latency=1487.8 ms , Thread object_id: 448 --- Iteration 3 with 30 threads --- -Iteration with 30 threads, T17-1 [Thread 456]: status=201 latency=815.0 ms , Thread object_id: 456 -Iteration with 30 threads, T16-1 [Thread 464]: status=201 latency=834.4 ms , Thread object_id: 464 -Iteration with 30 threads, T9-1 [Thread 472]: status=201 latency=922.5 ms , Thread object_id: 472 -Iteration with 30 threads, T11-1 [Thread 480]: status=201 latency=920.3 ms , Thread object_id: 480 -Iteration with 30 threads, T13-1 [Thread 488]: status=201 latency=923.7 ms , Thread object_id: 488 -Iteration with 30 threads, T4-1 [Thread 496]: status=201 latency=951.8 ms , Thread object_id: 496 -Iteration with 30 threads, T7-1 [Thread 504]: status=201 latency=957.6 ms , Thread object_id: 504 -Iteration with 30 threads, T18-1 [Thread 512]: status=201 latency=954.3 ms , Thread object_id: 512 -Iteration with 30 threads, T12-1 [Thread 520]: status=201 latency=970.8 ms , Thread object_id: 520 -Iteration with 30 threads, T20-1 [Thread 528]: status=201 latency=969.4 ms , Thread object_id: 528 -Iteration with 30 threads, T1-1 [Thread 536]: status=201 latency=1027.7 ms , Thread object_id: 536 -Iteration with 30 threads, T2-1 [Thread 544]: status=201 latency=1030.0 ms , Thread object_id: 544 -Iteration with 30 threads, T3-1 [Thread 552]: status=201 latency=1078.2 ms , Thread object_id: 552 -Iteration with 30 threads, T10-1 [Thread 560]: status=201 latency=1077.2 ms , Thread object_id: 560 -Iteration with 30 threads, T14-1 [Thread 568]: status=201 latency=1073.1 ms , Thread object_id: 568 -Iteration with 30 threads, T19-1 [Thread 576]: status=201 latency=1129.8 ms , Thread object_id: 576 -Iteration with 30 threads, T8-1 [Thread 584]: status=201 latency=1218.6 ms , Thread object_id: 584 -Iteration with 30 threads, T5-1 [Thread 592]: status=201 latency=1286.5 ms , Thread object_id: 592 -Iteration with 30 threads, T6-1 [Thread 600]: status=201 latency=1398.9 ms , Thread object_id: 600 -Iteration with 30 threads, T15-1 [Thread 608]: status=201 latency=1389.7 ms , Thread object_id: 608 -Iteration with 30 threads, T25-1 [Thread 616]: status=201 latency=1356.6 ms , Thread object_id: 616 -Iteration with 30 threads, T28-1 [Thread 624]: status=201 latency=1366.0 ms , Thread object_id: 624 -Iteration with 30 threads, T16-2 [Thread 464]: status=201 latency=673.2 ms , Thread object_id: 464 -Iteration with 30 threads, T22-1 [Thread 632]: status=201 latency=1492.2 ms , Thread object_id: 632 -Iteration with 30 threads, T24-1 [Thread 640]: status=201 latency=1480.2 ms , Thread object_id: 640 -Iteration with 30 threads, T23-1 [Thread 648]: status=201 latency=1492.0 ms , Thread object_id: 648 -Iteration with 30 threads, T1-2 [Thread 536]: status=201 latency=552.4 ms , Thread object_id: 536 -Iteration with 30 threads, T4-2 [Thread 496]: status=201 latency=636.4 ms , Thread object_id: 496 -Iteration with 30 threads, T26-1 [Thread 656]: status=201 latency=1522.0 ms , Thread object_id: 656 -Iteration with 30 threads, T2-2 [Thread 544]: status=201 latency=566.2 ms , Thread object_id: 544 -Iteration with 30 threads, T18-2 [Thread 512]: status=201 latency=619.1 ms , Thread object_id: 512 -Iteration with 30 threads, T30-1 [Thread 664]: status=201 latency=1504.0 ms , Thread object_id: 664 -Iteration with 30 threads, T7-2 [Thread 504]: status=201 latency=639.4 ms , Thread object_id: 504 -Iteration with 30 threads, T21-1 [Thread 672]: status=201 latency=1592.1 ms , Thread object_id: 672 -Iteration with 30 threads, T11-2 [Thread 480]: status=201 latency=697.7 ms , Thread object_id: 480 -Iteration with 30 threads, T12-2 [Thread 520]: status=201 latency=657.3 ms , Thread object_id: 520 -Iteration with 30 threads, T3-2 [Thread 552]: status=201 latency=564.5 ms , Thread object_id: 552 -Iteration with 30 threads, T10-2 [Thread 560]: status=201 latency=626.9 ms , Thread object_id: 560 -Iteration with 30 threads, T17-2 [Thread 456]: status=201 latency=886.0 ms , Thread object_id: 456 -Iteration with 30 threads, T29-1 [Thread 680]: status=201 latency=1646.8 ms , Thread object_id: 680 -Iteration with 30 threads, T9-2 [Thread 472]: status=201 latency=829.1 ms , Thread object_id: 472 -Iteration with 30 threads, T8-2 [Thread 584]: status=201 latency=572.5 ms , Thread object_id: 584 -Iteration with 30 threads, T19-2 [Thread 576]: status=201 latency=682.2 ms , Thread object_id: 576 -Iteration with 30 threads, T14-2 [Thread 568]: status=201 latency=746.1 ms , Thread object_id: 568 -Iteration with 30 threads, T20-2 [Thread 528]: status=201 latency=854.9 ms , Thread object_id: 528 -Iteration with 30 threads, T27-1 [Thread 688]: status=201 latency=1784.5 ms , Thread object_id: 688 -Iteration with 30 threads, T5-2 [Thread 592]: status=201 latency=602.9 ms , Thread object_id: 592 -Iteration with 30 threads, T13-2 [Thread 488]: status=201 latency=977.3 ms , Thread object_id: 488 -Iteration with 30 threads, T15-2 [Thread 608]: status=201 latency=555.8 ms , Thread object_id: 608 -Iteration with 30 threads, T28-2 [Thread 624]: status=201 latency=571.0 ms , Thread object_id: 624 -Iteration with 30 threads, T6-2 [Thread 600]: status=201 latency=667.6 ms , Thread object_id: 600 -Iteration with 30 threads, T22-2 [Thread 632]: status=201 latency=540.5 ms , Thread object_id: 632 -Iteration with 30 threads, T25-2 [Thread 616]: status=201 latency=701.8 ms , Thread object_id: 616 -Iteration with 30 threads, T26-2 [Thread 656]: status=201 latency=576.1 ms , Thread object_id: 656 -Iteration with 30 threads, T29-2 [Thread 680]: status=201 latency=471.7 ms , Thread object_id: 680 -Iteration with 30 threads, T24-2 [Thread 640]: status=201 latency=680.5 ms , Thread object_id: 640 -Iteration with 30 threads, T30-2 [Thread 664]: status=201 latency=637.5 ms , Thread object_id: 664 -Iteration with 30 threads, T21-2 [Thread 672]: status=201 latency=638.4 ms , Thread object_id: 672 -Iteration with 30 threads, T23-2 [Thread 648]: status=201 latency=738.2 ms , Thread object_id: 648 -Iteration with 30 threads, T27-2 [Thread 688]: status=201 latency=709.0 ms , Thread object_id: 688 +Iteration with 30 threads, T5-1 [Thread 456]: status=201 latency=847.4 ms , Thread object_id: 456 +Iteration with 30 threads, T15-1 [Thread 464]: status=201 latency=917.1 ms , Thread object_id: 464 +Iteration with 30 threads, T19-1 [Thread 472]: status=201 latency=931.4 ms , Thread object_id: 472 +Iteration with 30 threads, T12-1 [Thread 480]: status=201 latency=943.0 ms , Thread object_id: 480 +Iteration with 30 threads, T4-1 [Thread 488]: status=201 latency=957.8 ms , Thread object_id: 488 +Iteration with 30 threads, T20-1 [Thread 496]: status=201 latency=932.9 ms , Thread object_id: 496 +Iteration with 30 threads, T8-1 [Thread 504]: status=201 latency=951.4 ms , Thread object_id: 504 +Iteration with 30 threads, T13-1 [Thread 512]: status=201 latency=954.0 ms , Thread object_id: 512 +Iteration with 30 threads, T6-1 [Thread 520]: status=201 latency=983.0 ms , Thread object_id: 520 +Iteration with 30 threads, T9-1 [Thread 528]: status=201 latency=979.6 ms , Thread object_id: 528 +Iteration with 30 threads, T18-1 [Thread 536]: status=201 latency=979.9 ms , Thread object_id: 536 +Iteration with 30 threads, T10-1 [Thread 544]: status=201 latency=1010.6 ms , Thread object_id: 544 +Iteration with 30 threads, T3-1 [Thread 552]: status=201 latency=1033.0 ms , Thread object_id: 552 +Iteration with 30 threads, T17-1 [Thread 560]: status=201 latency=1037.0 ms , Thread object_id: 560 +Iteration with 30 threads, T16-1 [Thread 568]: status=201 latency=1088.6 ms , Thread object_id: 568 +Iteration with 30 threads, T14-1 [Thread 576]: status=201 latency=1180.9 ms , Thread object_id: 576 +Iteration with 30 threads, T2-1 [Thread 584]: status=201 latency=1240.9 ms , Thread object_id: 584 +Iteration with 30 threads, T1-1 [Thread 592]: status=201 latency=1263.5 ms , Thread object_id: 592 +Iteration with 30 threads, T7-1 [Thread 600]: status=201 latency=1252.0 ms , Thread object_id: 600 +Iteration with 30 threads, T11-1 [Thread 608]: status=201 latency=1255.3 ms , Thread object_id: 608 +Iteration with 30 threads, T26-1 [Thread 616]: status=201 latency=1335.5 ms , Thread object_id: 616 +Iteration with 30 threads, T30-1 [Thread 624]: status=201 latency=1312.4 ms , Thread object_id: 624 +Iteration with 30 threads, T23-1 [Thread 632]: status=201 latency=1411.8 ms , Thread object_id: 632 +Iteration with 30 threads, T22-1 [Thread 640]: status=201 latency=1427.5 ms , Thread object_id: 640 +Iteration with 30 threads, T28-1 [Thread 648]: status=201 latency=1480.8 ms , Thread object_id: 648 +Iteration with 30 threads, T25-1 [Thread 656]: status=201 latency=1519.2 ms , Thread object_id: 656 +Iteration with 30 threads, T27-1 [Thread 664]: status=201 latency=1576.4 ms , Thread object_id: 664 +Iteration with 30 threads, T24-1 [Thread 672]: status=201 latency=1609.2 ms , Thread object_id: 672 +Iteration with 30 threads, T21-1 [Thread 680]: status=201 latency=1640.4 ms , Thread object_id: 680 +Iteration with 30 threads, T29-1 [Thread 688]: status=201 latency=1618.0 ms , Thread object_id: 688 --- Iteration 4 with 40 threads --- -Iteration with 40 threads, T4-1 [Thread 696]: status=201 latency=1106.2 ms , Thread object_id: 696 -Iteration with 40 threads, T13-1 [Thread 704]: status=201 latency=1103.4 ms , Thread object_id: 704 -Iteration with 40 threads, T26-1 [Thread 712]: status=201 latency=1083.8 ms , Thread object_id: 712 -Iteration with 40 threads, T17-1 [Thread 720]: status=201 latency=1098.5 ms , Thread object_id: 720 -Iteration with 40 threads, T9-1 [Thread 728]: status=201 latency=1116.5 ms , Thread object_id: 728 -Iteration with 40 threads, T22-1 [Thread 736]: status=201 latency=1095.6 ms , Thread object_id: 736 -Iteration with 40 threads, T11-1 [Thread 744]: status=201 latency=1124.0 ms , Thread object_id: 744 -Iteration with 40 threads, T18-1 [Thread 752]: status=201 latency=1159.6 ms , Thread object_id: 752 -Iteration with 40 threads, T19-1 [Thread 760]: status=201 latency=1169.6 ms , Thread object_id: 760 -Iteration with 40 threads, T5-1 [Thread 768]: status=201 latency=1206.8 ms , Thread object_id: 768 -Iteration with 40 threads, T20-1 [Thread 776]: status=201 latency=1190.8 ms , Thread object_id: 776 -Iteration with 40 threads, T2-1 [Thread 784]: status=201 latency=1233.7 ms , Thread object_id: 784 -Iteration with 40 threads, T29-1 [Thread 792]: status=201 latency=1200.2 ms , Thread object_id: 792 -Iteration with 40 threads, T25-1 [Thread 800]: status=201 latency=1207.7 ms , Thread object_id: 800 -Iteration with 40 threads, T3-1 [Thread 808]: status=201 latency=1286.8 ms , Thread object_id: 808 -Iteration with 40 threads, T28-1 [Thread 816]: status=201 latency=1264.5 ms , Thread object_id: 816 -Iteration with 40 threads, T7-1 [Thread 824]: status=201 latency=1307.4 ms , Thread object_id: 824 -Iteration with 40 threads, T10-1 [Thread 832]: status=201 latency=1334.6 ms , Thread object_id: 832 -Iteration with 40 threads, T16-1 [Thread 840]: status=201 latency=1327.4 ms , Thread object_id: 840 -Iteration with 40 threads, T6-1 [Thread 848]: status=201 latency=1358.3 ms , Thread object_id: 848 -Iteration with 40 threads, T12-1 [Thread 856]: status=201 latency=1373.6 ms , Thread object_id: 856 -Iteration with 40 threads, T30-1 [Thread 864]: status=201 latency=1431.6 ms , Thread object_id: 864 -Iteration with 40 threads, T27-1 [Thread 872]: status=201 latency=1441.4 ms , Thread object_id: 872 -Iteration with 40 threads, T15-1 [Thread 880]: status=201 latency=1467.3 ms , Thread object_id: 880 -Iteration with 40 threads, T14-1 [Thread 888]: status=201 latency=1470.9 ms , Thread object_id: 888 -Iteration with 40 threads, T8-1 [Thread 896]: status=201 latency=1492.8 ms , Thread object_id: 896 -Iteration with 40 threads, T1-1 [Thread 904]: status=201 latency=1582.0 ms , Thread object_id: 904 -Iteration with 40 threads, T23-1 [Thread 912]: status=201 latency=1550.5 ms , Thread object_id: 912 -Iteration with 40 threads, T24-1 [Thread 920]: status=201 latency=1576.0 ms , Thread object_id: 920 -Iteration with 40 threads, T21-1 [Thread 928]: status=201 latency=1595.4 ms , Thread object_id: 928 -Iteration with 40 threads, T22-2 [Thread 736]: status=201 latency=556.8 ms , Thread object_id: 736 -Iteration with 40 threads, T4-2 [Thread 696]: status=201 latency=578.9 ms , Thread object_id: 696 -Iteration with 40 threads, T11-2 [Thread 744]: status=201 latency=549.0 ms , Thread object_id: 744 -Iteration with 40 threads, T26-2 [Thread 712]: status=201 latency=641.7 ms , Thread object_id: 712 -Iteration with 40 threads, T3-2 [Thread 808]: status=201 latency=530.4 ms , Thread object_id: 808 -Iteration with 40 threads, T19-2 [Thread 760]: status=201 latency=619.5 ms , Thread object_id: 760 -Iteration with 40 threads, T9-2 [Thread 728]: status=201 latency=768.1 ms , Thread object_id: 728 -Iteration with 40 threads, T17-2 [Thread 720]: status=201 latency=770.4 ms , Thread object_id: 720 -Iteration with 40 threads, T13-2 [Thread 704]: status=201 latency=775.2 ms , Thread object_id: 704 -Iteration with 40 threads, T18-2 [Thread 752]: status=201 latency=706.4 ms , Thread object_id: 752 -Iteration with 40 threads, T16-2 [Thread 840]: status=201 latency=543.2 ms , Thread object_id: 840 -Iteration with 40 threads, T5-2 [Thread 768]: status=201 latency=710.6 ms , Thread object_id: 768 -Iteration with 40 threads, T10-2 [Thread 832]: status=201 latency=573.7 ms , Thread object_id: 832 -Iteration with 40 threads, T28-2 [Thread 816]: status=201 latency=715.0 ms , Thread object_id: 816 -Iteration with 40 threads, T25-2 [Thread 800]: status=201 latency=776.6 ms , Thread object_id: 800 -Iteration with 40 threads, T29-2 [Thread 792]: status=201 latency=779.2 ms , Thread object_id: 792 -Iteration with 40 threads, T6-2 [Thread 848]: status=201 latency=658.7 ms , Thread object_id: 848 -Iteration with 40 threads, T2-2 [Thread 784]: status=201 latency=791.2 ms , Thread object_id: 784 -Iteration with 40 threads, T12-2 [Thread 856]: status=201 latency=633.7 ms , Thread object_id: 856 -Iteration with 40 threads, T7-2 [Thread 824]: status=201 latency=716.5 ms , Thread object_id: 824 -Iteration with 40 threads, T20-2 [Thread 776]: status=201 latency=810.3 ms , Thread object_id: 776 -Iteration with 40 threads, T27-2 [Thread 872]: status=201 latency=550.3 ms , Thread object_id: 872 -Iteration with 40 threads, T15-2 [Thread 880]: status=201 latency=601.7 ms , Thread object_id: 880 -Iteration with 40 threads, T14-2 [Thread 888]: status=201 latency=609.4 ms , Thread object_id: 888 -Iteration with 40 threads, T8-2 [Thread 896]: status=201 latency=587.9 ms , Thread object_id: 896 -Iteration with 40 threads, T23-2 [Thread 912]: status=201 latency=547.0 ms , Thread object_id: 912 -Iteration with 40 threads, T21-2 [Thread 928]: status=201 latency=560.8 ms , Thread object_id: 928 -Iteration with 40 threads, T30-2 [Thread 864]: status=201 latency=730.3 ms , Thread object_id: 864 -Iteration with 40 threads, T24-2 [Thread 920]: status=201 latency=646.8 ms , Thread object_id: 920 -Iteration with 40 threads, T1-2 [Thread 904]: status=201 latency=703.0 ms , Thread object_id: 904 -Iteration with 40 threads, T40-1 [Thread 936]: status=201 latency=4772.4 ms , Thread object_id: 936 -Iteration with 40 threads, T35-1 [Thread 944]: status=201 latency=4821.9 ms , Thread object_id: 944 -Iteration with 40 threads, T31-1 [Thread 952]: status=201 latency=4864.8 ms , Thread object_id: 952 -Iteration with 40 threads, T33-1 [Thread 960]: status=201 latency=4848.7 ms , Thread object_id: 960 -Iteration with 40 threads, T38-1 [Thread 968]: status=201 latency=4817.1 ms , Thread object_id: 968 -Iteration with 40 threads, T39-1 [Thread 976]: status=201 latency=4813.2 ms , Thread object_id: 976 -Iteration with 40 threads, T32-1 [Thread 984]: status=201 latency=4883.2 ms , Thread object_id: 984 -Iteration with 40 threads, T36-1 [Thread 992]: status=201 latency=4857.3 ms , Thread object_id: 992 -Iteration with 40 threads, T37-1 [Thread 1000]: status=201 latency=4925.7 ms , Thread object_id: 1000 -Iteration with 40 threads, T34-1 [Thread 1008]: status=201 latency=4948.9 ms , Thread object_id: 1008 -Iteration with 40 threads, T40-2 [Thread 936]: status=201 latency=534.7 ms , Thread object_id: 936 -Iteration with 40 threads, T38-2 [Thread 968]: status=201 latency=512.6 ms , Thread object_id: 968 -Iteration with 40 threads, T39-2 [Thread 976]: status=201 latency=550.7 ms , Thread object_id: 976 -Iteration with 40 threads, T34-2 [Thread 1008]: status=201 latency=524.5 ms , Thread object_id: 1008 -Iteration with 40 threads, T32-2 [Thread 984]: status=201 latency=612.9 ms , Thread object_id: 984 -Iteration with 40 threads, T35-2 [Thread 944]: status=201 latency=684.8 ms , Thread object_id: 944 -Iteration with 40 threads, T31-2 [Thread 952]: status=201 latency=693.6 ms , Thread object_id: 952 -Iteration with 40 threads, T33-2 [Thread 960]: status=201 latency=741.3 ms , Thread object_id: 960 -Iteration with 40 threads, T36-2 [Thread 992]: status=201 latency=788.6 ms , Thread object_id: 992 -Iteration with 40 threads, T37-2 [Thread 1000]: status=201 latency=735.2 ms , Thread object_id: 1000 +Iteration with 40 threads, T3-1 [Thread 696]: status=201 latency=1075.0 ms , Thread object_id: 696 +Iteration with 40 threads, T12-1 [Thread 704]: status=201 latency=1086.8 ms , Thread object_id: 704 +Iteration with 40 threads, T20-1 [Thread 712]: status=201 latency=1092.0 ms , Thread object_id: 712 +Iteration with 40 threads, T2-1 [Thread 720]: status=201 latency=1119.8 ms , Thread object_id: 720 +Iteration with 40 threads, T1-1 [Thread 728]: status=201 latency=1129.2 ms , Thread object_id: 728 +Iteration with 40 threads, T23-1 [Thread 736]: status=201 latency=1096.0 ms , Thread object_id: 736 +Iteration with 40 threads, T18-1 [Thread 744]: status=201 latency=1128.1 ms , Thread object_id: 744 +Iteration with 40 threads, T15-1 [Thread 752]: status=201 latency=1137.3 ms , Thread object_id: 752 +Iteration with 40 threads, T28-1 [Thread 760]: status=201 latency=1136.0 ms , Thread object_id: 760 +Iteration with 40 threads, T6-1 [Thread 768]: status=201 latency=1170.3 ms , Thread object_id: 768 +Iteration with 40 threads, T4-1 [Thread 776]: status=201 latency=1186.8 ms , Thread object_id: 776 +Iteration with 40 threads, T9-1 [Thread 784]: status=201 latency=1192.2 ms , Thread object_id: 784 +Iteration with 40 threads, T10-1 [Thread 792]: status=201 latency=1206.8 ms , Thread object_id: 792 +Iteration with 40 threads, T17-1 [Thread 800]: status=201 latency=1198.6 ms , Thread object_id: 800 +Iteration with 40 threads, T21-1 [Thread 808]: status=201 latency=1206.9 ms , Thread object_id: 808 +Iteration with 40 threads, T27-1 [Thread 816]: status=201 latency=1199.7 ms , Thread object_id: 816 +Iteration with 40 threads, T26-1 [Thread 824]: status=201 latency=1203.8 ms , Thread object_id: 824 +Iteration with 40 threads, T8-1 [Thread 832]: status=201 latency=1229.8 ms , Thread object_id: 832 +Iteration with 40 threads, T30-1 [Thread 840]: status=201 latency=1206.6 ms , Thread object_id: 840 +Iteration with 40 threads, T11-1 [Thread 848]: status=201 latency=1248.0 ms , Thread object_id: 848 +Iteration with 40 threads, T5-1 [Thread 856]: status=201 latency=1279.3 ms , Thread object_id: 856 +Iteration with 40 threads, T7-1 [Thread 864]: status=201 latency=1307.7 ms , Thread object_id: 864 +Iteration with 40 threads, T31-1 [Thread 872]: status=201 latency=1331.1 ms , Thread object_id: 872 +Iteration with 40 threads, T38-1 [Thread 880]: status=201 latency=1295.4 ms , Thread object_id: 880 +Iteration with 40 threads, T37-1 [Thread 888]: status=201 latency=1365.3 ms , Thread object_id: 888 +Iteration with 40 threads, T40-1 [Thread 896]: status=201 latency=1351.7 ms , Thread object_id: 896 +Iteration with 40 threads, T32-1 [Thread 904]: status=201 latency=1427.8 ms , Thread object_id: 904 +Iteration with 40 threads, T35-1 [Thread 912]: status=201 latency=1408.0 ms , Thread object_id: 912 +Iteration with 40 threads, T25-1 [Thread 920]: status=201 latency=1466.3 ms , Thread object_id: 920 +Iteration with 40 threads, T33-1 [Thread 928]: status=201 latency=1467.8 ms , Thread object_id: 928 +Iteration with 40 threads, T16-1 [Thread 936]: status=201 latency=1504.4 ms , Thread object_id: 936 +Iteration with 40 threads, T13-1 [Thread 944]: status=201 latency=1522.6 ms , Thread object_id: 944 +Iteration with 40 threads, T19-1 [Thread 952]: status=201 latency=1515.5 ms , Thread object_id: 952 +Iteration with 40 threads, T29-1 [Thread 960]: status=201 latency=1503.7 ms , Thread object_id: 960 +Iteration with 40 threads, T14-1 [Thread 968]: status=201 latency=1522.6 ms , Thread object_id: 968 +Iteration with 40 threads, T22-1 [Thread 976]: status=201 latency=1520.2 ms , Thread object_id: 976 +Iteration with 40 threads, T24-1 [Thread 984]: status=201 latency=1518.1 ms , Thread object_id: 984 +Iteration with 40 threads, T36-1 [Thread 992]: status=201 latency=1546.9 ms , Thread object_id: 992 +Iteration with 40 threads, T39-1 [Thread 1000]: status=201 latency=1672.2 ms , Thread object_id: 1000 +Iteration with 40 threads, T34-1 [Thread 1008]: status=201 latency=1704.3 ms , Thread object_id: 1008 --- Iteration 5 with 50 threads --- -Iteration with 50 threads, T1-1 [Thread 1016]: status=201 latency=1055.5 ms , Thread object_id: 1016 -Iteration with 50 threads, T13-1 [Thread 1024]: status=201 latency=1054.0 ms , Thread object_id: 1024 -Iteration with 50 threads, T7-1 [Thread 1032]: status=201 latency=1077.0 ms , Thread object_id: 1032 -Iteration with 50 threads, T5-1 [Thread 1040]: status=201 latency=1148.3 ms , Thread object_id: 1040 -Iteration with 50 threads, T11-1 [Thread 1048]: status=201 latency=1183.2 ms , Thread object_id: 1048 -Iteration with 50 threads, T23-1 [Thread 1056]: status=201 latency=1187.7 ms , Thread object_id: 1056 -Iteration with 50 threads, T4-1 [Thread 1064]: status=201 latency=1215.1 ms , Thread object_id: 1064 -Iteration with 50 threads, T3-1 [Thread 1072]: status=201 latency=1220.2 ms , Thread object_id: 1072 -Iteration with 50 threads, T9-1 [Thread 1080]: status=201 latency=1241.2 ms , Thread object_id: 1080 -Iteration with 50 threads, T6-1 [Thread 1088]: status=201 latency=1264.7 ms , Thread object_id: 1088 -Iteration with 50 threads, T8-1 [Thread 1096]: status=201 latency=1266.0 ms , Thread object_id: 1096 -Iteration with 50 threads, T33-1 [Thread 1104]: status=201 latency=1292.0 ms , Thread object_id: 1104 -Iteration with 50 threads, T18-1 [Thread 1112]: status=201 latency=1313.4 ms , Thread object_id: 1112 -Iteration with 50 threads, T14-1 [Thread 1120]: status=201 latency=1320.1 ms , Thread object_id: 1120 -Iteration with 50 threads, T19-1 [Thread 1128]: status=201 latency=1319.4 ms , Thread object_id: 1128 -Iteration with 50 threads, T30-1 [Thread 1136]: status=201 latency=1313.0 ms , Thread object_id: 1136 -Iteration with 50 threads, T24-1 [Thread 1144]: status=201 latency=1364.3 ms , Thread object_id: 1144 -Iteration with 50 threads, T12-1 [Thread 1152]: status=201 latency=1395.2 ms , Thread object_id: 1152 -Iteration with 50 threads, T40-1 [Thread 1160]: status=201 latency=1400.0 ms , Thread object_id: 1160 -Iteration with 50 threads, T36-1 [Thread 1168]: status=201 latency=1405.5 ms , Thread object_id: 1168 -Iteration with 50 threads, T35-1 [Thread 1176]: status=201 latency=1408.4 ms , Thread object_id: 1176 -Iteration with 50 threads, T32-1 [Thread 1184]: status=201 latency=1503.5 ms , Thread object_id: 1184 -Iteration with 50 threads, T31-1 [Thread 1192]: status=201 latency=1507.7 ms , Thread object_id: 1192 -Iteration with 50 threads, T29-1 [Thread 1200]: status=201 latency=1513.5 ms , Thread object_id: 1200 -Iteration with 50 threads, T28-1 [Thread 1208]: status=201 latency=1553.6 ms , Thread object_id: 1208 -Iteration with 50 threads, T22-1 [Thread 1216]: status=201 latency=1561.9 ms , Thread object_id: 1216 -Iteration with 50 threads, T16-1 [Thread 1224]: status=201 latency=1579.0 ms , Thread object_id: 1224 -Iteration with 50 threads, T37-1 [Thread 1232]: status=201 latency=1558.6 ms , Thread object_id: 1232 -Iteration with 50 threads, T2-1 [Thread 1240]: status=201 latency=1601.5 ms , Thread object_id: 1240 -Iteration with 50 threads, T17-1 [Thread 1248]: status=201 latency=1582.9 ms , Thread object_id: 1248 -Iteration with 50 threads, T27-1 [Thread 1256]: status=201 latency=1573.5 ms , Thread object_id: 1256 -Iteration with 50 threads, T39-1 [Thread 1264]: status=201 latency=1624.0 ms , Thread object_id: 1264 -Iteration with 50 threads, T25-1 [Thread 1272]: status=201 latency=1639.9 ms , Thread object_id: 1272 -Iteration with 50 threads, T20-1 [Thread 1280]: status=201 latency=1660.1 ms , Thread object_id: 1280 -Iteration with 50 threads, T38-1 [Thread 1288]: status=201 latency=1643.8 ms , Thread object_id: 1288 -Iteration with 50 threads, T34-1 [Thread 1296]: status=201 latency=1669.0 ms , Thread object_id: 1296 -Iteration with 50 threads, T50-1 [Thread 1304]: status=201 latency=1655.7 ms , Thread object_id: 1304 -Iteration with 50 threads, T45-1 [Thread 1312]: status=201 latency=1689.3 ms , Thread object_id: 1312 -Iteration with 50 threads, T4-2 [Thread 1064]: status=201 latency=545.4 ms , Thread object_id: 1064 -Iteration with 50 threads, T41-1 [Thread 1320]: status=201 latency=1722.0 ms , Thread object_id: 1320 -Iteration with 50 threads, T47-1 [Thread 1328]: status=201 latency=1682.8 ms , Thread object_id: 1328 -Iteration with 50 threads, T49-1 [Thread 1336]: status=201 latency=1673.6 ms , Thread object_id: 1336 -Iteration with 50 threads, T42-1 [Thread 1344]: status=201 latency=1720.2 ms , Thread object_id: 1344 -Iteration with 50 threads, T48-1 [Thread 1352]: status=201 latency=1716.5 ms , Thread object_id: 1352 -Iteration with 50 threads, T9-2 [Thread 1080]: status=201 latency=554.2 ms , Thread object_id: 1080 -Iteration with 50 threads, T1-2 [Thread 1016]: status=201 latency=806.2 ms , Thread object_id: 1016 -Iteration with 50 threads, T23-2 [Thread 1056]: status=201 latency=646.8 ms , Thread object_id: 1056 -Iteration with 50 threads, T13-2 [Thread 1024]: status=201 latency=792.4 ms , Thread object_id: 1024 -Iteration with 50 threads, T5-2 [Thread 1040]: status=201 latency=708.1 ms , Thread object_id: 1040 -Iteration with 50 threads, T43-1 [Thread 1360]: status=201 latency=1804.4 ms , Thread object_id: 1360 -Iteration with 50 threads, T10-1 [Thread 1368]: status=201 latency=1855.7 ms , Thread object_id: 1368 -Iteration with 50 threads, T26-1 [Thread 1376]: status=201 latency=1862.5 ms , Thread object_id: 1376 -Iteration with 50 threads, T8-2 [Thread 1096]: status=201 latency=640.8 ms , Thread object_id: 1096 -Iteration with 50 threads, T21-1 [Thread 1384]: status=201 latency=1894.2 ms , Thread object_id: 1384 -Iteration with 50 threads, T15-1 [Thread 1392]: status=201 latency=1903.5 ms , Thread object_id: 1392 -Iteration with 50 threads, T6-2 [Thread 1088]: status=201 latency=659.0 ms , Thread object_id: 1088 -Iteration with 50 threads, T40-2 [Thread 1160]: status=201 latency=557.0 ms , Thread object_id: 1160 -Iteration with 50 threads, T11-2 [Thread 1048]: status=201 latency=833.0 ms , Thread object_id: 1048 -Iteration with 50 threads, T46-1 [Thread 1400]: status=201 latency=1953.4 ms , Thread object_id: 1400 -Iteration with 50 threads, T30-2 [Thread 1136]: status=201 latency=689.5 ms , Thread object_id: 1136 -Iteration with 50 threads, T44-1 [Thread 1408]: status=201 latency=1971.5 ms , Thread object_id: 1408 -Iteration with 50 threads, T7-2 [Thread 1032]: status=201 latency=954.6 ms , Thread object_id: 1032 -Iteration with 50 threads, T12-2 [Thread 1152]: status=201 latency=631.1 ms , Thread object_id: 1152 -Iteration with 50 threads, T36-2 [Thread 1168]: status=201 latency=595.2 ms , Thread object_id: 1168 -Iteration with 50 threads, T35-2 [Thread 1176]: status=201 latency=593.7 ms , Thread object_id: 1176 -Iteration with 50 threads, T19-2 [Thread 1128]: status=201 latency=732.2 ms , Thread object_id: 1128 -Iteration with 50 threads, T14-2 [Thread 1120]: status=201 latency=740.5 ms , Thread object_id: 1120 -Iteration with 50 threads, T32-2 [Thread 1184]: status=201 latency=576.0 ms , Thread object_id: 1184 -Iteration with 50 threads, T24-2 [Thread 1144]: status=201 latency=723.6 ms , Thread object_id: 1144 -Iteration with 50 threads, T3-2 [Thread 1072]: status=201 latency=895.2 ms , Thread object_id: 1072 -Iteration with 50 threads, T22-2 [Thread 1216]: status=201 latency=537.6 ms , Thread object_id: 1216 -Iteration with 50 threads, T33-2 [Thread 1104]: status=201 latency=794.2 ms , Thread object_id: 1104 -Iteration with 50 threads, T18-2 [Thread 1112]: status=201 latency=829.3 ms , Thread object_id: 1112 -Iteration with 50 threads, T29-2 [Thread 1200]: status=201 latency=621.1 ms , Thread object_id: 1200 -Iteration with 50 threads, T31-2 [Thread 1192]: status=201 latency=632.7 ms , Thread object_id: 1192 -Iteration with 50 threads, T25-2 [Thread 1272]: status=201 latency=536.9 ms , Thread object_id: 1272 -Iteration with 50 threads, T39-2 [Thread 1264]: status=201 latency=544.9 ms , Thread object_id: 1264 -Iteration with 50 threads, T16-2 [Thread 1224]: status=201 latency=614.4 ms , Thread object_id: 1224 -Iteration with 50 threads, T37-2 [Thread 1232]: status=201 latency=613.0 ms , Thread object_id: 1232 -Iteration with 50 threads, T38-2 [Thread 1288]: status=201 latency=602.4 ms , Thread object_id: 1288 -Iteration with 50 threads, T28-2 [Thread 1208]: status=201 latency=742.1 ms , Thread object_id: 1208 -Iteration with 50 threads, T45-2 [Thread 1312]: status=201 latency=639.5 ms , Thread object_id: 1312 -Iteration with 50 threads, T17-2 [Thread 1248]: status=201 latency=813.9 ms , Thread object_id: 1248 -Iteration with 50 threads, T43-2 [Thread 1360]: status=201 latency=563.7 ms , Thread object_id: 1360 -Iteration with 50 threads, T27-2 [Thread 1256]: status=201 latency=841.6 ms , Thread object_id: 1256 -Iteration with 50 threads, T21-2 [Thread 1384]: status=201 latency=593.5 ms , Thread object_id: 1384 -Iteration with 50 threads, T47-2 [Thread 1328]: status=201 latency=743.8 ms , Thread object_id: 1328 -Iteration with 50 threads, T15-2 [Thread 1392]: status=201 latency=591.6 ms , Thread object_id: 1392 -Iteration with 50 threads, T2-2 [Thread 1240]: status=201 latency=912.0 ms , Thread object_id: 1240 -Iteration with 50 threads, T20-2 [Thread 1280]: status=201 latency=841.3 ms , Thread object_id: 1280 -Iteration with 50 threads, T41-2 [Thread 1320]: status=201 latency=789.3 ms , Thread object_id: 1320 -Iteration with 50 threads, T44-2 [Thread 1408]: status=201 latency=538.3 ms , Thread object_id: 1408 -Iteration with 50 threads, T49-2 [Thread 1336]: status=201 latency=879.2 ms , Thread object_id: 1336 -Iteration with 50 threads, T42-2 [Thread 1344]: status=201 latency=877.2 ms , Thread object_id: 1344 -Iteration with 50 threads, T34-2 [Thread 1296]: status=201 latency=943.4 ms , Thread object_id: 1296 -Iteration with 50 threads, T46-2 [Thread 1400]: status=201 latency=614.6 ms , Thread object_id: 1400 -Iteration with 50 threads, T10-2 [Thread 1368]: status=201 latency=888.5 ms , Thread object_id: 1368 -Iteration with 50 threads, T48-2 [Thread 1352]: status=201 latency=975.3 ms , Thread object_id: 1352 -Iteration with 50 threads, T26-2 [Thread 1376]: status=201 latency=910.0 ms , Thread object_id: 1376 -Iteration with 50 threads, T50-2 [Thread 1304]: status=201 latency=1048.5 ms , Thread object_id: 1304 +Iteration with 50 threads, T9-1 [Thread 1016]: status=201 latency=1245.3 ms , Thread object_id: 1016 +Iteration with 50 threads, T16-1 [Thread 1024]: status=201 latency=1237.2 ms , Thread object_id: 1024 +Iteration with 50 threads, T24-1 [Thread 1032]: status=201 latency=1262.2 ms , Thread object_id: 1032 +Iteration with 50 threads, T10-1 [Thread 1040]: status=201 latency=1289.6 ms , Thread object_id: 1040 +Iteration with 50 threads, T40-1 [Thread 1048]: status=201 latency=1280.9 ms , Thread object_id: 1048 +Iteration with 50 threads, T7-1 [Thread 1056]: status=201 latency=1343.0 ms , Thread object_id: 1056 +Iteration with 50 threads, T1-1 [Thread 1064]: status=201 latency=1354.7 ms , Thread object_id: 1064 +Iteration with 50 threads, T5-1 [Thread 1072]: status=201 latency=1347.3 ms , Thread object_id: 1072 +Iteration with 50 threads, T17-1 [Thread 1080]: status=201 latency=1375.4 ms , Thread object_id: 1080 +Iteration with 50 threads, T39-1 [Thread 1088]: status=201 latency=1350.2 ms , Thread object_id: 1088 +Iteration with 50 threads, T11-1 [Thread 1096]: status=201 latency=1383.6 ms , Thread object_id: 1096 +Iteration with 50 threads, T15-1 [Thread 1104]: status=201 latency=1378.4 ms , Thread object_id: 1104 +Iteration with 50 threads, T26-1 [Thread 1112]: status=201 latency=1365.4 ms , Thread object_id: 1112 +Iteration with 50 threads, T22-1 [Thread 1120]: status=201 latency=1370.1 ms , Thread object_id: 1120 +Iteration with 50 threads, T3-1 [Thread 1128]: status=201 latency=1396.2 ms , Thread object_id: 1128 +Iteration with 50 threads, T36-1 [Thread 1136]: status=201 latency=1493.6 ms , Thread object_id: 1136 +Iteration with 50 threads, T21-1 [Thread 1144]: status=201 latency=1511.1 ms , Thread object_id: 1144 +Iteration with 50 threads, T23-1 [Thread 1152]: status=201 latency=1509.2 ms , Thread object_id: 1152 +Iteration with 50 threads, T27-1 [Thread 1160]: status=201 latency=1505.1 ms , Thread object_id: 1160 +Iteration with 50 threads, T42-1 [Thread 1168]: status=201 latency=1481.0 ms , Thread object_id: 1168 +Iteration with 50 threads, T8-1 [Thread 1176]: status=201 latency=1529.5 ms , Thread object_id: 1176 +Iteration with 50 threads, T18-1 [Thread 1184]: status=201 latency=1516.6 ms , Thread object_id: 1184 +Iteration with 50 threads, T28-1 [Thread 1192]: status=201 latency=1505.2 ms , Thread object_id: 1192 +Iteration with 50 threads, T4-1 [Thread 1200]: status=201 latency=1536.6 ms , Thread object_id: 1200 +Iteration with 50 threads, T31-1 [Thread 1208]: status=201 latency=1502.6 ms , Thread object_id: 1208 +Iteration with 50 threads, T41-1 [Thread 1216]: status=201 latency=1491.6 ms , Thread object_id: 1216 +Iteration with 50 threads, T25-1 [Thread 1224]: status=201 latency=1509.5 ms , Thread object_id: 1224 +Iteration with 50 threads, T13-1 [Thread 1232]: status=201 latency=1524.5 ms , Thread object_id: 1232 +Iteration with 50 threads, T46-1 [Thread 1240]: status=201 latency=1510.5 ms , Thread object_id: 1240 +Iteration with 50 threads, T37-1 [Thread 1248]: status=201 latency=1549.9 ms , Thread object_id: 1248 +Iteration with 50 threads, T20-1 [Thread 1256]: status=201 latency=1569.9 ms , Thread object_id: 1256 +Iteration with 50 threads, T44-1 [Thread 1264]: status=201 latency=1531.6 ms , Thread object_id: 1264 +Iteration with 50 threads, T50-1 [Thread 1272]: status=201 latency=1501.8 ms , Thread object_id: 1272 +Iteration with 50 threads, T47-1 [Thread 1280]: status=201 latency=1520.1 ms , Thread object_id: 1280 +Iteration with 50 threads, T45-1 [Thread 1288]: status=201 latency=1547.2 ms , Thread object_id: 1288 +Iteration with 50 threads, T48-1 [Thread 1296]: status=201 latency=3422.2 ms , Thread object_id: 1296 +Iteration with 50 threads, T34-1 [Thread 1304]: status=201 latency=3485.8 ms , Thread object_id: 1304 +Iteration with 50 threads, T38-1 [Thread 1312]: status=201 latency=3505.0 ms , Thread object_id: 1312 +Iteration with 50 threads, T35-1 [Thread 1320]: status=201 latency=3509.7 ms , Thread object_id: 1320 +Iteration with 50 threads, T14-1 [Thread 1328]: status=201 latency=3539.2 ms , Thread object_id: 1328 +Iteration with 50 threads, T49-1 [Thread 1336]: status=201 latency=3455.4 ms , Thread object_id: 1336 +Iteration with 50 threads, T30-1 [Thread 1344]: status=201 latency=3521.3 ms , Thread object_id: 1344 +Iteration with 50 threads, T2-1 [Thread 1352]: status=201 latency=3558.6 ms , Thread object_id: 1352 +Iteration with 50 threads, T6-1 [Thread 1360]: status=201 latency=3554.9 ms , Thread object_id: 1360 +Iteration with 50 threads, T29-1 [Thread 1368]: status=201 latency=3526.6 ms , Thread object_id: 1368 +Iteration with 50 threads, T32-1 [Thread 1376]: status=201 latency=3525.5 ms , Thread object_id: 1376 +Iteration with 50 threads, T19-1 [Thread 1384]: status=201 latency=3547.9 ms , Thread object_id: 1384 +Iteration with 50 threads, T12-1 [Thread 1392]: status=201 latency=3557.0 ms , Thread object_id: 1392 +Iteration with 50 threads, T43-1 [Thread 1400]: status=201 latency=3509.0 ms , Thread object_id: 1400 +Iteration with 50 threads, T33-1 [Thread 1408]: status=201 latency=3534.9 ms , Thread object_id: 1408 ----- SUMMARY ----- -Total calls : 300 -Average latency : 1148.9 ms -Min / Max : 471.7 / 4948.9 ms +Total calls : 150 +Average latency : 1525.9 ms +Min / Max : 756.7 / 3558.6 ms Status histogram: - 201 : 300 + 201 : 150