Skip to content

Instantly share code, notes, and snippets.

@ConoHa
Created September 14, 2015 08:37
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save ConoHa/462432f58ff34ae9e49a to your computer and use it in GitHub Desktop.
Save ConoHa/462432f58ff34ae9e49a to your computer and use it in GitHub Desktop.
ロードバランサーベンチマーク(1)
同時接続数10
# wrk -c 10 -t 5 -d 1m --latency http://[ロードバランサーのVIP]/
Running 1m test @ http://[ロードバランサーのVIP]/
5 threads and 10 connections
Thread Stats Avg Stdev Max +/- Stdev
Latency 105.06ms 16.29ms 160.44ms 63.61%
Req/Sec 19.11 4.82 40.00 77.04%
Latency Distribution
50% 101.09ms
75% 117.28ms
90% 129.65ms
99% 142.54ms
5713 requests in 1.00m, 96.04MB read
Requests/sec: 95.07
Transfer/sec: 1.60MB
-----------
同時接続数50
# wrk -c 50 -t 5 -d 1m --latency http://[ロードバランサーのVIP]/
Running 1m test @ http://[ロードバランサーのVIP]/
5 threads and 50 connections
Thread Stats Avg Stdev Max +/- Stdev
Latency 117.17ms 22.40ms 267.89ms 65.48%
Req/Sec 85.47 13.15 131.00 56.67%
Latency Distribution
50% 116.36ms
75% 131.98ms
90% 146.09ms
99% 177.37ms
25591 requests in 1.00m, 430.23MB read
Requests/sec: 425.86
Transfer/sec: 7.16MB
-----------
同時接続数100
# wrk -c 100 -t 5 -d 1m --latency http://[ロードバランサーのVIP]/
Running 1m test @ http://[ロードバランサーのVIP]/
5 threads and 100 connections
Thread Stats Avg Stdev Max +/- Stdev
Latency 140.10ms 23.73ms 360.95ms 74.59%
Req/Sec 143.23 20.36 200.00 67.87%
Latency Distribution
50% 136.27ms
75% 151.43ms
90% 169.33ms
99% 220.09ms
42815 requests in 1.00m, 719.80MB read
Requests/sec: 712.46
Transfer/sec: 11.98MB
-----------
同時接続数200
# wrk -c 200 -t 5 -d 1m --latency http://[ロードバランサーのVIP]/
Running 1m test @ http://[ロードバランサーのVIP]/
5 threads and 200 connections
Thread Stats Avg Stdev Max +/- Stdev
Latency 208.79ms 67.88ms 747.67ms 80.56%
Req/Sec 193.43 34.96 360.00 68.60%
Latency Distribution
50% 191.67ms
75% 232.46ms
90% 291.38ms
99% 461.78ms
57730 requests in 1.00m, 0.95GB read
Requests/sec: 960.69
Transfer/sec: 16.15MB
-----------
同時接続数300
# wrk -c 300 -t 5 -d 1m --latency http://[ロードバランサーのVIP]/
Running 1m test @ http://[ロードバランサーのVIP]/
5 threads and 300 connections
Thread Stats Avg Stdev Max +/- Stdev
Latency 292.21ms 112.70ms 1.11s 76.42%
Req/Sec 207.94 44.20 380.00 70.09%
Latency Distribution
50% 268.31ms
75% 340.15ms
90% 434.09ms
99% 685.91ms
62073 requests in 1.00m, 1.02GB read
Requests/sec: 1032.88
Transfer/sec: 17.36MB
-----------
同時接続数400
# wrk -c 400 -t 5 -d 1m --latency http://[ロードバランサーのVIP]/
Running 1m test @ http://[ロードバランサーのVIP]/
5 threads and 400 connections
Thread Stats Avg Stdev Max +/- Stdev
Latency 390.50ms 154.62ms 1.36s 75.77%
Req/Sec 207.65 50.44 434.00 68.65%
Latency Distribution
50% 365.36ms
75% 454.57ms
90% 579.17ms
99% 940.38ms
61935 requests in 1.00m, 1.02GB read
Requests/sec: 1030.55
Transfer/sec: 17.33MB
-----------
同時接続数500
# wrk -c 500 -t 5 -d 1m --latency http://[ロードバランサーのVIP]/
Running 1m test @ http://[ロードバランサーのVIP]/
5 threads and 500 connections
Thread Stats Avg Stdev Max +/- Stdev
Latency 475.94ms 181.98ms 1.87s 74.78%
Req/Sec 211.85 57.82 470.00 67.28%
Latency Distribution
50% 453.91ms
75% 557.50ms
90% 699.40ms
99% 1.07s
63168 requests in 1.00m, 1.04GB read
Requests/sec: 1051.22
Transfer/sec: 17.67MB
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment