Skip to content

Instantly share code, notes, and snippets.

@membphis
Created January 2, 2019 11:23
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save membphis/f1960fd8ef7c93781a97545fa8ff8812 to your computer and use it in GitHub Desktop.
Save membphis/f1960fd8ef7c93781a97545fa8ff8812 to your computer and use it in GitHub Desktop.
机器配置:macbook pro 15寸,4core/8thread i7 cpu,内存 8G。
先贴上单独用 wrk 压测结果(此时 nginx 的4个 worker 是处于 100% 工作状态)。
$ wrk -d 10 -t 4 -c 1000 --latency http://test.com/
Running 10s test @ http://test.com/
4 threads and 1000 connections
Thread Stats Avg Stdev Max +/- Stdev
Latency 162.01ms 308.50ms 1.98s 84.93%
Req/Sec 10.61k 1.43k 15.45k 68.50%
Latency Distribution
50% 10.79ms
75% 87.83ms
90% 681.56ms
99% 1.22s
422478 requests in 10.06s, 144.62MB read
Socket errors: connect 0, read 0, write 0, timeout 46
Non-2xx or 3xx responses: 422478
Requests/sec: 42012.13
Transfer/sec: 14.38MB
下面是使用 wrk2 方式脚本方式压测,因为本地机器核心没那么多,所以这里固定只开 wrk 4 线程。
客户端连接数也固定为 1000 。
+ for i in 1 3 5 7 9 11 13 15 17 19 21 23 25 27 29 31 33 35 37 39 41 43 45 47 49
+ date
Wed Jan 2 19:09:57 CST 2019
+ echo '------run 1000---'
------run 1000---
+ /home/resty/ins_pkg/wrk2/wrk -d 10 -t 4 -c 1000 --latency -R 1000 http://test.com/
Running 10s test @ http://test.com/
4 threads and 1000 connections
Thread Stats Avg Stdev Max +/- Stdev
Latency 4.44ms 6.22ms 46.56ms 93.14%
Req/Sec -nan -nan 0.00 0.00%
Latency Distribution (HdrHistogram - Recorded Latency)
50.000% 2.15ms
75.000% 5.29ms
90.000% 8.14ms
99.000% 35.04ms
99.900% 45.22ms
99.990% 46.43ms
99.999% 46.59ms
100.000% 46.59ms
Detailed Percentile spectrum:
Value Percentile TotalCount 1/(1-Percentile)
0.162 0.000000 1 1.00
0.795 0.100000 922 1.11
1.151 0.200000 1843 1.25
1.434 0.300000 2760 1.43
1.744 0.400000 3688 1.67
2.147 0.500000 4603 2.00
2.449 0.550000 5062 2.22
3.001 0.600000 5520 2.50
3.835 0.650000 5981 2.86
4.531 0.700000 6442 3.33
5.291 0.750000 6902 4.00
5.695 0.775000 7130 4.44
6.131 0.800000 7360 5.00
6.539 0.825000 7592 5.71
6.995 0.850000 7823 6.67
7.543 0.875000 8050 8.00
7.831 0.887500 8166 8.89
8.135 0.900000 8281 10.00
8.647 0.912500 8395 11.43
9.815 0.925000 8510 13.33
12.687 0.937500 8625 16.00
17.391 0.943750 8683 17.78
19.535 0.950000 8740 20.00
20.191 0.956250 8800 22.86
21.279 0.962500 8855 26.67
23.103 0.968750 8914 32.00
23.631 0.971875 8942 35.56
24.415 0.975000 8970 40.00
25.535 0.978125 8999 45.71
26.063 0.981250 9028 53.33
31.375 0.984375 9058 64.00
32.719 0.985938 9071 71.11
33.407 0.987500 9085 80.00
34.079 0.989062 9100 91.43
35.647 0.990625 9114 106.67
37.439 0.992188 9130 128.00
37.919 0.992969 9136 142.22
38.367 0.993750 9143 160.00
38.815 0.994531 9150 182.86
39.199 0.995313 9157 213.33
39.551 0.996094 9165 256.00
39.711 0.996484 9168 284.44
40.255 0.996875 9172 320.00
41.503 0.997266 9175 365.71
42.463 0.997656 9179 426.67
43.359 0.998047 9183 512.00
43.647 0.998242 9184 568.89
43.935 0.998437 9186 640.00
44.799 0.998633 9188 731.43
45.119 0.998828 9190 853.33
45.343 0.999023 9192 1024.00
45.343 0.999121 9192 1137.78
45.407 0.999219 9193 1280.00
45.535 0.999316 9194 1462.86
45.759 0.999414 9196 1706.67
45.759 0.999512 9196 2048.00
45.759 0.999561 9196 2275.56
45.983 0.999609 9197 2560.00
45.983 0.999658 9197 2925.71
46.143 0.999707 9198 3413.33
46.143 0.999756 9198 4096.00
46.143 0.999780 9198 4551.11
46.431 0.999805 9199 5120.00
46.431 0.999829 9199 5851.43
46.431 0.999854 9199 6826.67
46.431 0.999878 9199 8192.00
46.431 0.999890 9199 9102.22
46.591 0.999902 9200 10240.00
46.591 1.000000 9200 inf
#[Mean = 4.443, StdDeviation = 6.220]
#[Max = 46.560, Total count = 9200]
#[Buckets = 27, SubBuckets = 2048]
----------------------------------------------------------
9204 requests in 10.00s, 3.15MB read
Non-2xx or 3xx responses: 9204
Requests/sec: 920.00
Transfer/sec: 322.54KB
+ sleep 5
+ for i in 1 3 5 7 9 11 13 15 17 19 21 23 25 27 29 31 33 35 37 39 41 43 45 47 49
+ date
Wed Jan 2 19:10:12 CST 2019
+ echo '------run 3000---'
------run 3000---
+ /home/resty/ins_pkg/wrk2/wrk -d 10 -t 4 -c 1000 --latency -R 3000 http://test.com/
Running 10s test @ http://test.com/
4 threads and 1000 connections
Thread Stats Avg Stdev Max +/- Stdev
Latency 3.33ms 3.54ms 39.74ms 89.41%
Req/Sec -nan -nan 0.00 0.00%
Latency Distribution (HdrHistogram - Recorded Latency)
50.000% 2.11ms
75.000% 4.47ms
90.000% 6.99ms
99.000% 22.43ms
99.900% 33.34ms
99.990% 36.93ms
99.999% 39.78ms
100.000% 39.78ms
Detailed Percentile spectrum:
Value Percentile TotalCount 1/(1-Percentile)
0.149 0.000000 1 1.00
0.785 0.100000 2742 1.11
1.107 0.200000 5488 1.25
1.399 0.300000 8225 1.43
1.701 0.400000 10962 1.67
2.111 0.500000 13699 2.00
2.437 0.550000 15072 2.22
2.873 0.600000 16441 2.50
3.341 0.650000 17813 2.86
3.885 0.700000 19184 3.33
4.471 0.750000 20551 4.00
4.815 0.775000 21241 4.44
5.175 0.800000 21918 5.00
5.547 0.825000 22610 5.71
5.987 0.850000 23290 6.67
6.483 0.875000 23975 8.00
6.715 0.887500 24320 8.89
6.987 0.900000 24659 10.00
7.239 0.912500 25001 11.43
7.583 0.925000 25347 13.33
7.963 0.937500 25689 16.00
8.151 0.943750 25856 17.78
8.375 0.950000 26032 20.00
8.663 0.956250 26199 22.86
8.967 0.962500 26371 26.67
9.255 0.968750 26541 32.00
9.527 0.971875 26627 35.56
9.887 0.975000 26715 40.00
10.415 0.978125 26799 45.71
11.591 0.981250 26885 53.33
12.863 0.984375 26969 64.00
13.935 0.985938 27012 71.11
15.303 0.987500 27056 80.00
21.775 0.989062 27098 91.43
22.575 0.990625 27143 106.67
22.815 0.992188 27184 128.00
23.087 0.992969 27205 142.22
26.703 0.993750 27226 160.00
26.959 0.994531 27248 182.86
27.407 0.995313 27269 213.33
27.775 0.996094 27290 256.00
28.559 0.996484 27301 284.44
29.071 0.996875 27312 320.00
29.695 0.997266 27323 365.71
30.175 0.997656 27334 426.67
30.735 0.998047 27344 512.00
32.303 0.998242 27349 568.89
32.671 0.998437 27355 640.00
32.991 0.998633 27361 731.43
33.119 0.998828 27366 853.33
33.375 0.999023 27371 1024.00
33.503 0.999121 27374 1137.78
33.535 0.999219 27377 1280.00
33.599 0.999316 27380 1462.86
33.663 0.999414 27381 1706.67
33.951 0.999512 27384 2048.00
34.207 0.999561 27385 2275.56
36.799 0.999609 27390 2560.00
36.799 0.999658 27390 2925.71
36.799 0.999707 27390 3413.33
36.831 0.999756 27392 4096.00
36.831 0.999780 27392 4551.11
36.831 0.999805 27392 5120.00
36.863 0.999829 27393 5851.43
36.863 0.999854 27393 6826.67
36.927 0.999878 27394 8192.00
36.927 0.999890 27394 9102.22
37.119 0.999902 27395 10240.00
37.119 0.999915 27395 11702.86
37.119 0.999927 27395 13653.33
37.151 0.999939 27396 16384.00
37.151 0.999945 27396 18204.44
37.151 0.999951 27396 20480.00
37.151 0.999957 27396 23405.71
37.151 0.999963 27396 27306.67
39.775 0.999969 27397 32768.00
39.775 1.000000 27397 inf
#[Mean = 3.327, StdDeviation = 3.536]
#[Max = 39.744, Total count = 27397]
#[Buckets = 27, SubBuckets = 2048]
----------------------------------------------------------
27402 requests in 10.00s, 9.38MB read
Non-2xx or 3xx responses: 27402
Requests/sec: 2739.33
Transfer/sec: 0.94MB
+ sleep 5
+ for i in 1 3 5 7 9 11 13 15 17 19 21 23 25 27 29 31 33 35 37 39 41 43 45 47 49
+ date
Wed Jan 2 19:10:27 CST 2019
+ echo '------run 5000---'
------run 5000---
+ /home/resty/ins_pkg/wrk2/wrk -d 10 -t 4 -c 1000 --latency -R 5000 http://test.com/
Running 10s test @ http://test.com/
4 threads and 1000 connections
Thread Stats Avg Stdev Max +/- Stdev
Latency 3.62ms 3.45ms 38.05ms 86.78%
Req/Sec -nan -nan 0.00 0.00%
Latency Distribution (HdrHistogram - Recorded Latency)
50.000% 2.36ms
75.000% 5.12ms
90.000% 7.80ms
99.000% 17.39ms
99.900% 34.85ms
99.990% 37.76ms
99.999% 38.08ms
100.000% 38.08ms
Detailed Percentile spectrum:
Value Percentile TotalCount 1/(1-Percentile)
0.145 0.000000 1 1.00
0.818 0.100000 4561 1.11
1.145 0.200000 9115 1.25
1.465 0.300000 13673 1.43
1.838 0.400000 18227 1.67
2.355 0.500000 22785 2.00
2.765 0.550000 25058 2.22
3.257 0.600000 27335 2.50
3.819 0.650000 29614 2.86
4.423 0.700000 31892 3.33
5.123 0.750000 34171 4.00
5.479 0.775000 35312 4.44
5.867 0.800000 36445 5.00
6.267 0.825000 37597 5.71
6.731 0.850000 38721 6.67
7.219 0.875000 39868 8.00
7.503 0.887500 40437 8.89
7.803 0.900000 41000 10.00
8.111 0.912500 41568 11.43
8.479 0.925000 42141 13.33
8.927 0.937500 42719 16.00
9.239 0.943750 42992 17.78
9.599 0.950000 43282 20.00
9.999 0.956250 43562 22.86
10.455 0.962500 43847 26.67
10.927 0.968750 44131 32.00
11.215 0.971875 44272 35.56
11.575 0.975000 44415 40.00
11.927 0.978125 44560 45.71
12.375 0.981250 44699 53.33
13.055 0.984375 44845 64.00
13.687 0.985938 44913 71.11
14.311 0.987500 44984 80.00
15.671 0.989062 45056 91.43
18.127 0.990625 45126 106.67
19.375 0.992188 45199 128.00
19.807 0.992969 45233 142.22
20.303 0.993750 45269 160.00
20.751 0.994531 45305 182.86
21.103 0.995313 45340 213.33
21.807 0.996094 45378 256.00
21.983 0.996484 45393 284.44
22.511 0.996875 45411 320.00
22.911 0.997266 45429 365.71
23.391 0.997656 45447 426.67
24.207 0.998047 45465 512.00
25.951 0.998242 45473 568.89
27.471 0.998437 45482 640.00
29.071 0.998633 45491 731.43
29.711 0.998828 45500 853.33
34.943 0.999023 45509 1024.00
35.167 0.999121 45513 1137.78
35.487 0.999219 45518 1280.00
35.679 0.999316 45522 1462.86
36.031 0.999414 45528 1706.67
36.095 0.999512 45531 2048.00
36.127 0.999561 45533 2275.56
36.543 0.999609 45536 2560.00
36.863 0.999658 45538 2925.71
37.055 0.999707 45540 3413.33
37.247 0.999756 45542 4096.00
37.503 0.999780 45543 4551.11
37.631 0.999805 45546 5120.00
37.631 0.999829 45546 5851.43
37.727 0.999854 45547 6826.67
37.759 0.999878 45548 8192.00
37.759 0.999890 45548 9102.22
37.823 0.999902 45549 10240.00
37.855 0.999915 45550 11702.86
37.855 0.999927 45550 13653.33
37.983 0.999939 45552 16384.00
37.983 0.999945 45552 18204.44
37.983 0.999951 45552 20480.00
37.983 0.999957 45552 23405.71
37.983 0.999963 45552 27306.67
37.983 0.999969 45552 32768.00
37.983 0.999973 45552 36408.89
37.983 0.999976 45552 40960.00
38.079 0.999979 45553 46811.43
38.079 1.000000 45553 inf
#[Mean = 3.623, StdDeviation = 3.447]
#[Max = 38.048, Total count = 45553]
#[Buckets = 27, SubBuckets = 2048]
----------------------------------------------------------
45559 requests in 10.00s, 15.60MB read
Non-2xx or 3xx responses: 45559
Requests/sec: 4554.54
Transfer/sec: 1.56MB
+ sleep 5
+ for i in 1 3 5 7 9 11 13 15 17 19 21 23 25 27 29 31 33 35 37 39 41 43 45 47 49
+ date
Wed Jan 2 19:10:42 CST 2019
+ echo '------run 7000---'
------run 7000---
+ /home/resty/ins_pkg/wrk2/wrk -d 10 -t 4 -c 1000 --latency -R 7000 http://test.com/
Running 10s test @ http://test.com/
4 threads and 1000 connections
Thread Stats Avg Stdev Max +/- Stdev
Latency 4.17ms 3.97ms 50.27ms 91.60%
Req/Sec -nan -nan 0.00 0.00%
Latency Distribution (HdrHistogram - Recorded Latency)
50.000% 3.35ms
75.000% 5.52ms
90.000% 7.75ms
99.000% 23.15ms
99.900% 38.88ms
99.990% 50.08ms
99.999% 50.30ms
100.000% 50.30ms
Detailed Percentile spectrum:
Value Percentile TotalCount 1/(1-Percentile)
0.123 0.000000 1 1.00
1.039 0.100000 6294 1.11
1.504 0.200000 12589 1.25
2.015 0.300000 18878 1.43
2.643 0.400000 25165 1.67
3.345 0.500000 31469 2.00
3.705 0.550000 34608 2.22
4.077 0.600000 37752 2.50
4.491 0.650000 40916 2.86
4.975 0.700000 44040 3.33
5.519 0.750000 47191 4.00
5.807 0.775000 48765 4.44
6.103 0.800000 50334 5.00
6.447 0.825000 51910 5.71
6.799 0.850000 53485 6.67
7.227 0.875000 55057 8.00
7.471 0.887500 55837 8.89
7.751 0.900000 56623 10.00
8.047 0.912500 57415 11.43
8.391 0.925000 58204 13.33
8.799 0.937500 58988 16.00
9.047 0.943750 59385 17.78
9.287 0.950000 59773 20.00
9.575 0.956250 60171 22.86
9.935 0.962500 60553 26.67
10.359 0.968750 60949 32.00
10.623 0.971875 61146 35.56
11.039 0.975000 61343 40.00
11.511 0.978125 61537 45.71
12.207 0.981250 61734 53.33
13.631 0.984375 61929 64.00
14.599 0.985938 62028 71.11
16.879 0.987500 62126 80.00
21.023 0.989062 62224 91.43
24.175 0.990625 62323 106.67
28.655 0.992188 62421 128.00
30.095 0.992969 62471 142.22
31.183 0.993750 62519 160.00
31.919 0.994531 62570 182.86
32.735 0.995313 62618 213.33
33.663 0.996094 62669 256.00
33.887 0.996484 62691 284.44
34.303 0.996875 62716 320.00
34.847 0.997266 62740 365.71
35.711 0.997656 62770 426.67
36.319 0.998047 62790 512.00
36.767 0.998242 62802 568.89
37.247 0.998437 62817 640.00
37.471 0.998633 62826 731.43
37.983 0.998828 62839 853.33
39.007 0.999023 62852 1024.00
40.383 0.999121 62857 1137.78
40.575 0.999219 62864 1280.00
40.831 0.999316 62870 1462.86
41.791 0.999414 62876 1706.67
42.975 0.999512 62882 2048.00
43.615 0.999561 62885 2275.56
43.775 0.999609 62890 2560.00
46.175 0.999658 62891 2925.71
46.591 0.999707 62897 3413.33
46.591 0.999756 62897 4096.00
46.879 0.999780 62899 4551.11
47.359 0.999805 62901 5120.00
47.423 0.999829 62902 5851.43
47.583 0.999854 62903 6826.67
49.983 0.999878 62905 8192.00
50.079 0.999890 62906 9102.22
50.079 0.999902 62906 10240.00
50.111 0.999915 62908 11702.86
50.111 0.999927 62908 13653.33
50.239 0.999939 62910 16384.00
50.239 0.999945 62910 18204.44
50.239 0.999951 62910 20480.00
50.239 0.999957 62910 23405.71
50.239 0.999963 62910 27306.67
50.303 0.999969 62912 32768.00
50.303 1.000000 62912 inf
#[Mean = 4.169, StdDeviation = 3.970]
#[Max = 50.272, Total count = 62912]
#[Buckets = 27, SubBuckets = 2048]
----------------------------------------------------------
62916 requests in 10.00s, 21.54MB read
Non-2xx or 3xx responses: 62916
Requests/sec: 6291.08
Transfer/sec: 2.15MB
+ sleep 5
+ for i in 1 3 5 7 9 11 13 15 17 19 21 23 25 27 29 31 33 35 37 39 41 43 45 47 49
+ date
Wed Jan 2 19:10:57 CST 2019
+ echo '------run 9000---'
------run 9000---
+ /home/resty/ins_pkg/wrk2/wrk -d 10 -t 4 -c 1000 --latency -R 9000 http://test.com/
Running 10s test @ http://test.com/
4 threads and 1000 connections
Thread Stats Avg Stdev Max +/- Stdev
Latency 3.31ms 3.27ms 44.16ms 87.95%
Req/Sec -nan -nan 0.00 0.00%
Latency Distribution (HdrHistogram - Recorded Latency)
50.000% 2.19ms
75.000% 4.52ms
90.000% 7.04ms
99.000% 14.97ms
99.900% 31.33ms
99.990% 43.52ms
99.999% 44.10ms
100.000% 44.19ms
Detailed Percentile spectrum:
Value Percentile TotalCount 1/(1-Percentile)
0.115 0.000000 2 1.00
0.745 0.100000 8206 1.11
1.078 0.200000 16380 1.25
1.394 0.300000 24573 1.43
1.736 0.400000 32752 1.67
2.191 0.500000 40953 2.00
2.521 0.550000 45021 2.22
2.933 0.600000 49125 2.50
3.395 0.650000 53206 2.86
3.915 0.700000 57311 3.33
4.519 0.750000 61397 4.00
4.863 0.775000 63445 4.44
5.215 0.800000 65492 5.00
5.615 0.825000 67533 5.71
6.023 0.850000 69578 6.67
6.491 0.875000 71635 8.00
6.751 0.887500 72655 8.89
7.043 0.900000 73673 10.00
7.363 0.912500 74698 11.43
7.711 0.925000 75715 13.33
8.119 0.937500 76748 16.00
8.359 0.943750 77260 17.78
8.663 0.950000 77768 20.00
8.983 0.956250 78281 22.86
9.359 0.962500 78784 26.67
9.831 0.968750 79300 32.00
10.191 0.971875 79557 35.56
10.567 0.975000 79809 40.00
11.055 0.978125 80065 45.71
11.719 0.981250 80322 53.33
12.415 0.984375 80579 64.00
12.967 0.985938 80703 71.11
13.527 0.987500 80831 80.00
14.407 0.989062 80959 91.43
15.359 0.990625 81086 106.67
17.439 0.992188 81215 128.00
18.735 0.992969 81278 142.22
19.519 0.993750 81342 160.00
20.687 0.994531 81406 182.86
21.919 0.995313 81470 213.33
23.407 0.996094 81534 256.00
23.983 0.996484 81566 284.44
24.735 0.996875 81600 320.00
25.327 0.997266 81630 365.71
26.607 0.997656 81663 426.67
27.759 0.998047 81695 512.00
28.015 0.998242 81710 568.89
28.847 0.998437 81726 640.00
29.423 0.998633 81742 731.43
30.511 0.998828 81759 853.33
31.439 0.999023 81774 1024.00
31.583 0.999121 81782 1137.78
31.855 0.999219 81790 1280.00
33.215 0.999316 81798 1462.86
34.207 0.999414 81806 1706.67
38.143 0.999512 81814 2048.00
38.591 0.999561 81819 2275.56
39.583 0.999609 81823 2560.00
39.775 0.999658 81826 2925.71
39.999 0.999707 81830 3413.33
41.567 0.999756 81834 4096.00
41.919 0.999780 81836 4551.11
42.079 0.999805 81838 5120.00
42.303 0.999829 81840 5851.43
42.591 0.999854 81843 6826.67
43.519 0.999878 81845 8192.00
43.519 0.999890 81845 9102.22
43.583 0.999902 81846 10240.00
43.743 0.999915 81847 11702.86
43.775 0.999927 81848 13653.33
43.967 0.999939 81850 16384.00
43.967 0.999945 81850 18204.44
43.967 0.999951 81850 20480.00
43.967 0.999957 81850 23405.71
44.063 0.999963 81851 27306.67
44.063 0.999969 81851 32768.00
44.063 0.999973 81851 36408.89
44.095 0.999976 81852 40960.00
44.095 0.999979 81852 46811.43
44.095 0.999982 81852 54613.33
44.095 0.999985 81852 65536.00
44.095 0.999986 81852 72817.78
44.191 0.999988 81853 81920.00
44.191 1.000000 81853 inf
#[Mean = 3.307, StdDeviation = 3.266]
#[Max = 44.160, Total count = 81853]
#[Buckets = 27, SubBuckets = 2048]
----------------------------------------------------------
81858 requests in 10.00s, 28.03MB read
Non-2xx or 3xx responses: 81858
Requests/sec: 8187.74
Transfer/sec: 2.80MB
+ sleep 5
+ for i in 1 3 5 7 9 11 13 15 17 19 21 23 25 27 29 31 33 35 37 39 41 43 45 47 49
+ date
Wed Jan 2 19:11:12 CST 2019
+ echo '------run 11000---'
------run 11000---
+ /home/resty/ins_pkg/wrk2/wrk -d 10 -t 4 -c 1000 --latency -R 11000 http://test.com/
Running 10s test @ http://test.com/
4 threads and 1000 connections
Thread Stats Avg Stdev Max +/- Stdev
Latency 3.21ms 3.00ms 35.04ms 86.68%
Req/Sec -nan -nan 0.00 0.00%
Latency Distribution (HdrHistogram - Recorded Latency)
50.000% 2.18ms
75.000% 4.47ms
90.000% 6.91ms
99.000% 12.92ms
99.900% 29.30ms
99.990% 33.69ms
99.999% 34.88ms
100.000% 35.07ms
Detailed Percentile spectrum:
Value Percentile TotalCount 1/(1-Percentile)
0.111 0.000000 1 1.00
0.736 0.100000 10012 1.11
1.061 0.200000 20010 1.25
1.382 0.300000 30027 1.43
1.725 0.400000 40027 1.67
2.177 0.500000 50009 2.00
2.493 0.550000 55009 2.22
2.913 0.600000 60012 2.50
3.373 0.650000 65010 2.86
3.893 0.700000 70031 3.33
4.475 0.750000 75029 4.00
4.775 0.775000 77533 4.44
5.107 0.800000 80017 5.00
5.459 0.825000 82525 5.71
5.879 0.850000 85020 6.67
6.355 0.875000 87511 8.00
6.619 0.887500 88769 8.89
6.911 0.900000 90022 10.00
7.239 0.912500 91266 11.43
7.599 0.925000 92518 13.33
8.007 0.937500 93763 16.00
8.223 0.943750 94390 17.78
8.455 0.950000 95016 20.00
8.727 0.956250 95638 22.86
9.047 0.962500 96264 26.67
9.463 0.968750 96892 32.00
9.711 0.971875 97199 35.56
10.007 0.975000 97515 40.00
10.335 0.978125 97827 45.71
10.759 0.981250 98135 53.33
11.287 0.984375 98450 64.00
11.607 0.985938 98607 71.11
12.039 0.987500 98761 80.00
12.551 0.989062 98919 91.43
13.159 0.990625 99074 106.67
14.119 0.992188 99230 128.00
14.519 0.992969 99307 142.22
14.863 0.993750 99386 160.00
16.207 0.994531 99464 182.86
18.991 0.995313 99542 213.33
20.543 0.996094 99620 256.00
21.647 0.996484 99660 284.44
22.463 0.996875 99699 320.00
22.991 0.997266 99738 365.71
23.967 0.997656 99776 426.67
25.407 0.998047 99816 512.00
26.351 0.998242 99835 568.89
27.023 0.998437 99854 640.00
28.095 0.998633 99875 731.43
28.639 0.998828 99893 853.33
29.359 0.999023 99913 1024.00
29.727 0.999121 99923 1137.78
30.111 0.999219 99932 1280.00
31.999 0.999316 99942 1462.86
32.639 0.999414 99952 1706.67
33.151 0.999512 99962 2048.00
33.215 0.999561 99969 2275.56
33.247 0.999609 99971 2560.00
33.311 0.999658 99976 2925.71
33.375 0.999707 99981 3413.33
33.471 0.999756 99990 4096.00
33.471 0.999780 99990 4551.11
33.503 0.999805 99991 5120.00
33.567 0.999829 99994 5851.43
33.599 0.999854 99996 6826.67
33.631 0.999878 99999 8192.00
33.695 0.999890 100003 9102.22
33.695 0.999902 100003 10240.00
33.695 0.999915 100003 11702.86
33.695 0.999927 100003 13653.33
33.727 0.999939 100004 16384.00
33.983 0.999945 100005 18204.44
34.271 0.999951 100006 20480.00
34.271 0.999957 100006 23405.71
34.431 0.999963 100007 27306.67
34.431 0.999969 100007 32768.00
34.527 0.999973 100008 36408.89
34.527 0.999976 100008 40960.00
34.527 0.999979 100008 46811.43
34.879 0.999982 100009 54613.33
34.879 0.999985 100009 65536.00
34.879 0.999986 100009 72817.78
34.879 0.999988 100009 81920.00
34.879 0.999989 100009 93622.86
35.071 0.999991 100010 109226.67
35.071 1.000000 100010 inf
#[Mean = 3.214, StdDeviation = 2.996]
#[Max = 35.040, Total count = 100010]
#[Buckets = 27, SubBuckets = 2048]
----------------------------------------------------------
100016 requests in 10.00s, 34.24MB read
Non-2xx or 3xx responses: 100016
Requests/sec: 10000.36
Transfer/sec: 3.42MB
+ sleep 5
+ for i in 1 3 5 7 9 11 13 15 17 19 21 23 25 27 29 31 33 35 37 39 41 43 45 47 49
+ date
Wed Jan 2 19:11:27 CST 2019
+ echo '------run 13000---'
------run 13000---
+ /home/resty/ins_pkg/wrk2/wrk -d 10 -t 4 -c 1000 --latency -R 13000 http://test.com/
Running 10s test @ http://test.com/
4 threads and 1000 connections
Thread Stats Avg Stdev Max +/- Stdev
Latency 4.27ms 3.99ms 46.50ms 89.27%
Req/Sec -nan -nan 0.00 0.00%
Latency Distribution (HdrHistogram - Recorded Latency)
50.000% 3.29ms
75.000% 5.61ms
90.000% 8.41ms
99.000% 18.83ms
99.900% 39.65ms
99.990% 45.57ms
99.999% 46.33ms
100.000% 46.53ms
Detailed Percentile spectrum:
Value Percentile TotalCount 1/(1-Percentile)
0.139 0.000000 1 1.00
0.986 0.100000 11694 1.11
1.459 0.200000 23356 1.25
1.961 0.300000 35042 1.43
2.589 0.400000 46729 1.67
3.291 0.500000 58394 2.00
3.675 0.550000 64224 2.22
4.083 0.600000 70081 2.50
4.523 0.650000 75915 2.86
5.023 0.700000 81768 3.33
5.607 0.750000 87586 4.00
5.943 0.775000 90502 4.44
6.299 0.800000 93431 5.00
6.691 0.825000 96335 5.71
7.163 0.850000 99272 6.67
7.719 0.875000 102187 8.00
8.043 0.887500 103644 8.89
8.415 0.900000 105102 10.00
8.823 0.912500 106564 11.43
9.303 0.925000 108010 13.33
9.895 0.937500 109474 16.00
10.271 0.943750 110208 17.78
10.695 0.950000 110927 20.00
11.207 0.956250 111660 22.86
11.823 0.962500 112385 26.67
12.535 0.968750 113119 32.00
12.959 0.971875 113482 35.56
13.471 0.975000 113844 40.00
14.047 0.978125 114211 45.71
14.743 0.981250 114574 53.33
15.831 0.984375 114941 64.00
16.415 0.985938 115128 71.11
17.151 0.987500 115305 80.00
18.143 0.989062 115487 91.43
19.327 0.990625 115670 106.67
21.263 0.992188 115852 128.00
22.623 0.992969 115943 142.22
24.975 0.993750 116034 160.00
26.511 0.994531 116125 182.86
29.615 0.995313 116216 213.33
31.135 0.996094 116307 256.00
31.775 0.996484 116353 284.44
32.623 0.996875 116399 320.00
33.439 0.997266 116444 365.71
35.583 0.997656 116490 426.67
36.767 0.998047 116535 512.00
37.375 0.998242 116561 568.89
37.983 0.998437 116581 640.00
38.623 0.998633 116604 731.43
39.167 0.998828 116628 853.33
39.711 0.999023 116650 1024.00
39.903 0.999121 116661 1137.78
40.159 0.999219 116672 1280.00
40.383 0.999316 116684 1462.86
40.671 0.999414 116696 1706.67
40.863 0.999512 116707 2048.00
40.959 0.999561 116713 2275.56
41.087 0.999609 116718 2560.00
41.279 0.999658 116724 2925.71
41.695 0.999707 116729 3413.33
44.031 0.999756 116735 4096.00
44.095 0.999780 116739 4551.11
44.191 0.999805 116741 5120.00
44.287 0.999829 116744 5851.43
45.439 0.999854 116746 6826.67
45.535 0.999878 116749 8192.00
45.567 0.999890 116751 9102.22
45.599 0.999902 116753 10240.00
45.695 0.999915 116755 11702.86
45.695 0.999927 116755 13653.33
45.727 0.999939 116756 16384.00
45.759 0.999945 116757 18204.44
45.983 0.999951 116758 20480.00
46.111 0.999957 116759 23405.71
46.111 0.999963 116759 27306.67
46.143 0.999969 116760 32768.00
46.143 0.999973 116760 36408.89
46.239 0.999976 116761 40960.00
46.239 0.999979 116761 46811.43
46.239 0.999982 116761 54613.33
46.335 0.999985 116762 65536.00
46.335 0.999986 116762 72817.78
46.335 0.999988 116762 81920.00
46.335 0.999989 116762 93622.86
46.335 0.999991 116762 109226.67
46.527 0.999992 116763 131072.00
46.527 1.000000 116763 inf
#[Mean = 4.274, StdDeviation = 3.989]
#[Max = 46.496, Total count = 116763]
#[Buckets = 27, SubBuckets = 2048]
----------------------------------------------------------
116767 requests in 10.00s, 39.97MB read
Non-2xx or 3xx responses: 116767
Requests/sec: 11677.75
Transfer/sec: 4.00MB
+ sleep 5
+ for i in 1 3 5 7 9 11 13 15 17 19 21 23 25 27 29 31 33 35 37 39 41 43 45 47 49
+ date
Wed Jan 2 19:11:42 CST 2019
+ echo '------run 15000---'
------run 15000---
+ /home/resty/ins_pkg/wrk2/wrk -d 10 -t 4 -c 1000 --latency -R 15000 http://test.com/
Running 10s test @ http://test.com/
4 threads and 1000 connections
Thread Stats Avg Stdev Max +/- Stdev
Latency 4.64ms 29.07ms 1.02s 99.72%
Req/Sec -nan -nan 0.00 0.00%
Latency Distribution (HdrHistogram - Recorded Latency)
50.000% 2.44ms
75.000% 4.76ms
90.000% 7.26ms
99.000% 15.94ms
99.900% 608.77ms
99.990% 1.01s
99.999% 1.02s
100.000% 1.02s
Detailed Percentile spectrum:
Value Percentile TotalCount 1/(1-Percentile)
0.104 0.000000 1 1.00
0.760 0.100000 13642 1.11
1.123 0.200000 27302 1.25
1.476 0.300000 40902 1.43
1.875 0.400000 54543 1.67
2.443 0.500000 68192 2.00
2.821 0.550000 74982 2.22
3.243 0.600000 81812 2.50
3.709 0.650000 88608 2.86
4.203 0.700000 95426 3.33
4.755 0.750000 102266 4.00
5.039 0.775000 105652 4.44
5.355 0.800000 109050 5.00
5.719 0.825000 112475 5.71
6.131 0.850000 115876 6.67
6.647 0.875000 119270 8.00
6.939 0.887500 120982 8.89
7.255 0.900000 122695 10.00
7.591 0.912500 124379 11.43
7.979 0.925000 126094 13.33
8.439 0.937500 127796 16.00
8.703 0.943750 128647 17.78
8.991 0.950000 129488 20.00
9.359 0.956250 130349 22.86
9.727 0.962500 131195 26.67
10.167 0.968750 132044 32.00
10.447 0.971875 132479 35.56
10.823 0.975000 132903 40.00
11.263 0.978125 133325 45.71
11.855 0.981250 133752 53.33
12.927 0.984375 134177 64.00
13.575 0.985938 134387 71.11
14.391 0.987500 134601 80.00
15.335 0.989062 134814 91.43
16.311 0.990625 135028 106.67
17.583 0.992188 135239 128.00
18.415 0.992969 135345 142.22
19.455 0.993750 135455 160.00
20.719 0.994531 135558 182.86
22.895 0.995313 135665 213.33
25.535 0.996094 135771 256.00
29.439 0.996484 135824 284.44
32.271 0.996875 135878 320.00
36.799 0.997266 135931 365.71
83.135 0.997656 135984 426.67
161.663 0.998047 136037 512.00
274.175 0.998242 136064 568.89
351.231 0.998437 136091 640.00
423.935 0.998633 136117 731.43
537.087 0.998828 136144 853.33
611.839 0.999023 136170 1024.00
669.183 0.999121 136184 1137.78
685.055 0.999219 136197 1280.00
743.423 0.999316 136210 1462.86
801.791 0.999414 136224 1706.67
815.103 0.999512 136237 2048.00
867.839 0.999561 136244 2275.56
875.007 0.999609 136250 2560.00
880.639 0.999658 136257 2925.71
933.375 0.999707 136264 3413.33
941.055 0.999756 136270 4096.00
943.615 0.999780 136274 4551.11
946.175 0.999805 136277 5120.00
949.247 0.999829 136280 5851.43
998.911 0.999854 136284 6826.67
1005.567 0.999878 136288 8192.00
1006.079 0.999890 136289 9102.22
1007.103 0.999902 136290 10240.00
1008.639 0.999915 136292 11702.86
1009.151 0.999927 136294 13653.33
1010.175 0.999939 136295 16384.00
1011.199 0.999945 136296 18204.44
1012.223 0.999951 136297 20480.00
1013.247 0.999957 136298 23405.71
1014.271 0.999963 136299 27306.67
1014.271 0.999969 136299 32768.00
1014.783 0.999973 136300 36408.89
1014.783 0.999976 136300 40960.00
1016.831 0.999979 136302 46811.43
1016.831 0.999982 136302 54613.33
1016.831 0.999985 136302 65536.00
1016.831 0.999986 136302 72817.78
1016.831 0.999988 136302 81920.00
1016.831 0.999989 136302 93622.86
1016.831 0.999991 136302 109226.67
1016.831 0.999992 136302 131072.00
1018.367 0.999993 136303 145635.56
1018.367 1.000000 136303 inf
#[Mean = 4.639, StdDeviation = 29.066]
#[Max = 1017.856, Total count = 136303]
#[Buckets = 27, SubBuckets = 2048]
----------------------------------------------------------
136307 requests in 10.00s, 46.66MB read
Non-2xx or 3xx responses: 136307
Requests/sec: 13631.70
Transfer/sec: 4.67MB
+ sleep 5
+ for i in 1 3 5 7 9 11 13 15 17 19 21 23 25 27 29 31 33 35 37 39 41 43 45 47 49
+ date
Wed Jan 2 19:11:57 CST 2019
+ echo '------run 17000---'
------run 17000---
+ /home/resty/ins_pkg/wrk2/wrk -d 10 -t 4 -c 1000 --latency -R 17000 http://test.com/
Running 10s test @ http://test.com/
4 threads and 1000 connections
Thread Stats Avg Stdev Max +/- Stdev
Latency 4.42ms 9.32ms 200.70ms 96.10%
Req/Sec -nan -nan 0.00 0.00%
Latency Distribution (HdrHistogram - Recorded Latency)
50.000% 2.09ms
75.000% 4.47ms
90.000% 8.49ms
99.000% 54.91ms
99.900% 109.18ms
99.990% 165.25ms
99.999% 200.57ms
100.000% 200.83ms
Detailed Percentile spectrum:
Value Percentile TotalCount 1/(1-Percentile)
0.108 0.000000 1 1.00
0.715 0.100000 15462 1.11
1.026 0.200000 30889 1.25
1.327 0.300000 46348 1.43
1.668 0.400000 61811 1.67
2.087 0.500000 77275 2.00
2.377 0.550000 84953 2.22
2.755 0.600000 92696 2.50
3.207 0.650000 100398 2.86
3.761 0.700000 108107 3.33
4.467 0.750000 115843 4.00
4.891 0.775000 119689 4.44
5.407 0.800000 123547 5.00
6.011 0.825000 127418 5.71
6.703 0.850000 131272 6.67
7.515 0.875000 135132 8.00
7.975 0.887500 137061 8.89
8.487 0.900000 139011 10.00
9.055 0.912500 140926 11.43
9.735 0.925000 142876 13.33
10.591 0.937500 144792 16.00
11.119 0.943750 145754 17.78
11.791 0.950000 146712 20.00
12.703 0.956250 147681 22.86
14.167 0.962500 148643 26.67
16.311 0.968750 149607 32.00
17.647 0.971875 150090 35.56
19.599 0.975000 150574 40.00
22.303 0.978125 151056 45.71
26.607 0.981250 151541 53.33
34.047 0.984375 152021 64.00
36.895 0.985938 152262 71.11
42.175 0.987500 152503 80.00
48.447 0.989062 152745 91.43
58.143 0.990625 152988 106.67
62.751 0.992188 153227 128.00
66.559 0.992969 153349 142.22
70.975 0.993750 153470 160.00
74.815 0.994531 153590 182.86
78.463 0.995313 153711 213.33
83.455 0.996094 153831 256.00
85.951 0.996484 153893 284.44
86.847 0.996875 153952 320.00
88.063 0.997266 154013 365.71
89.023 0.997656 154072 426.67
92.223 0.998047 154132 512.00
95.935 0.998242 154162 568.89
98.111 0.998437 154193 640.00
101.311 0.998633 154222 731.43
106.175 0.998828 154253 853.33
109.951 0.999023 154284 1024.00
111.679 0.999121 154298 1137.78
112.703 0.999219 154313 1280.00
114.175 0.999316 154328 1462.86
115.263 0.999414 154343 1706.67
120.255 0.999512 154358 2048.00
125.247 0.999561 154366 2275.56
129.087 0.999609 154373 2560.00
131.711 0.999658 154381 2925.71
133.759 0.999707 154388 3413.33
141.951 0.999756 154396 4096.00
142.591 0.999780 154400 4551.11
151.679 0.999805 154403 5120.00
158.975 0.999829 154407 5851.43
160.511 0.999854 154411 6826.67
162.431 0.999878 154415 8192.00
165.119 0.999890 154417 9102.22
165.247 0.999902 154418 10240.00
169.087 0.999915 154420 11702.86
178.047 0.999927 154422 13653.33
192.639 0.999939 154424 16384.00
196.479 0.999945 154425 18204.44
198.783 0.999951 154426 20480.00
199.551 0.999957 154427 23405.71
200.191 0.999963 154428 27306.67
200.447 0.999969 154430 32768.00
200.447 0.999973 154430 36408.89
200.447 0.999976 154430 40960.00
200.447 0.999979 154430 46811.43
200.575 0.999982 154431 54613.33
200.575 0.999985 154431 65536.00
200.575 0.999986 154431 72817.78
200.703 0.999988 154432 81920.00
200.703 0.999989 154432 93622.86
200.703 0.999991 154432 109226.67
200.703 0.999992 154432 131072.00
200.703 0.999993 154432 145635.56
200.831 0.999994 154433 163840.00
200.831 1.000000 154433 inf
#[Mean = 4.423, StdDeviation = 9.322]
#[Max = 200.704, Total count = 154433]
#[Buckets = 27, SubBuckets = 2048]
----------------------------------------------------------
154438 requests in 10.00s, 52.87MB read
Non-2xx or 3xx responses: 154438
Requests/sec: 15449.02
Transfer/sec: 5.29MB
+ sleep 5
+ for i in 1 3 5 7 9 11 13 15 17 19 21 23 25 27 29 31 33 35 37 39 41 43 45 47 49
+ date
Wed Jan 2 19:12:12 CST 2019
+ echo '------run 19000---'
------run 19000---
+ /home/resty/ins_pkg/wrk2/wrk -d 10 -t 4 -c 1000 --latency -R 19000 http://test.com/
Running 10s test @ http://test.com/
4 threads and 1000 connections
Thread Stats Avg Stdev Max +/- Stdev
Latency 12.61ms 78.97ms 1.23s 98.57%
Req/Sec -nan -nan 0.00 0.00%
Latency Distribution (HdrHistogram - Recorded Latency)
50.000% 3.18ms
75.000% 5.32ms
90.000% 7.84ms
99.000% 396.29ms
99.900% 1.02s
99.990% 1.18s
99.999% 1.23s
100.000% 1.23s
Detailed Percentile spectrum:
Value Percentile TotalCount 1/(1-Percentile)
0.116 0.000000 1 1.00
0.964 0.100000 17085 1.11
1.465 0.200000 34140 1.25
1.958 0.300000 51209 1.43
2.529 0.400000 68267 1.67
3.179 0.500000 85316 2.00
3.541 0.550000 93848 2.22
3.921 0.600000 102378 2.50
4.327 0.650000 110954 2.86
4.787 0.700000 119457 3.33
5.315 0.750000 127974 4.00
5.619 0.775000 132231 4.44
5.947 0.800000 136487 5.00
6.315 0.825000 140774 5.71
6.727 0.850000 145039 6.67
7.223 0.875000 149299 8.00
7.519 0.887500 151425 8.89
7.839 0.900000 153550 10.00
8.207 0.912500 155688 11.43
8.655 0.925000 157819 13.33
9.295 0.937500 159954 16.00
9.727 0.943750 161032 17.78
10.231 0.950000 162089 20.00
10.919 0.956250 163154 22.86
11.991 0.962500 164211 26.67
15.247 0.968750 165277 32.00
17.711 0.971875 165812 35.56
22.111 0.975000 166343 40.00
28.991 0.978125 166876 45.71
37.119 0.981250 167411 53.33
62.847 0.984375 167943 64.00
115.391 0.985938 168209 71.11
217.855 0.987500 168477 80.00
330.495 0.989062 168742 91.43
444.159 0.990625 169009 106.67
546.815 0.992188 169279 128.00
599.039 0.992969 169409 142.22
655.871 0.993750 169542 160.00
716.799 0.994531 169675 182.86
775.167 0.995313 169810 213.33
823.295 0.996094 169945 256.00
854.527 0.996484 170009 284.44
873.983 0.996875 170075 320.00
912.895 0.997266 170145 365.71
929.279 0.997656 170209 426.67
966.655 0.998047 170276 512.00
970.239 0.998242 170312 568.89
988.159 0.998437 170344 640.00
1009.151 0.998633 170375 731.43
1018.879 0.998828 170415 853.33
1027.583 0.999023 170442 1024.00
1035.263 0.999121 170459 1137.78
1047.039 0.999219 170475 1280.00
1058.815 0.999316 170492 1462.86
1073.151 0.999414 170510 1706.67
1084.415 0.999512 170525 2048.00
1097.727 0.999561 170535 2275.56
1104.895 0.999609 170542 2560.00
1119.231 0.999658 170551 2925.71
1125.375 0.999707 170559 3413.33
1132.543 0.999756 170567 4096.00
1142.783 0.999780 170571 4551.11
1147.903 0.999805 170575 5120.00
1157.119 0.999829 170579 5851.43
1169.407 0.999854 170585 6826.67
1171.455 0.999878 170588 8192.00
1175.551 0.999890 170590 9102.22
1176.575 0.999902 170593 10240.00
1180.671 0.999915 170594 11702.86
1182.719 0.999927 170597 13653.33
1184.767 0.999939 170598 16384.00
1185.791 0.999945 170599 18204.44
1197.055 0.999951 170600 20480.00
1198.079 0.999957 170601 23405.71
1200.127 0.999963 170602 27306.67
1204.223 0.999969 170603 32768.00
1219.583 0.999973 170604 36408.89
1219.583 0.999976 170604 40960.00
1222.655 0.999979 170605 46811.43
1222.655 0.999982 170605 54613.33
1227.775 0.999985 170606 65536.00
1227.775 0.999986 170606 72817.78
1227.775 0.999988 170606 81920.00
1230.847 0.999989 170607 93622.86
1230.847 0.999991 170607 109226.67
1230.847 0.999992 170607 131072.00
1230.847 0.999993 170607 145635.56
1230.847 0.999994 170607 163840.00
1232.895 0.999995 170608 187245.71
1232.895 1.000000 170608 inf
#[Mean = 12.613, StdDeviation = 78.971]
#[Max = 1231.872, Total count = 170608]
#[Buckets = 27, SubBuckets = 2048]
----------------------------------------------------------
170612 requests in 10.00s, 58.41MB read
Non-2xx or 3xx responses: 170612
Requests/sec: 17064.21
Transfer/sec: 5.84MB
+ sleep 5
+ for i in 1 3 5 7 9 11 13 15 17 19 21 23 25 27 29 31 33 35 37 39 41 43 45 47 49
+ date
Wed Jan 2 19:12:27 CST 2019
+ echo '------run 21000---'
------run 21000---
+ /home/resty/ins_pkg/wrk2/wrk -d 10 -t 4 -c 1000 --latency -R 21000 http://test.com/
Running 10s test @ http://test.com/
4 threads and 1000 connections
Thread Stats Avg Stdev Max +/- Stdev
Latency 8.20ms 56.72ms 1.13s 99.22%
Req/Sec -nan -nan 0.00 0.00%
Latency Distribution (HdrHistogram - Recorded Latency)
50.000% 2.95ms
75.000% 4.86ms
90.000% 7.27ms
99.000% 33.22ms
99.900% 953.34ms
99.990% 1.09s
99.999% 1.12s
100.000% 1.13s
Detailed Percentile spectrum:
Value Percentile TotalCount 1/(1-Percentile)
0.110 0.000000 1 1.00
0.904 0.100000 18850 1.11
1.371 0.200000 37734 1.25
1.845 0.300000 56552 1.43
2.363 0.400000 75435 1.67
2.951 0.500000 94284 2.00
3.275 0.550000 103688 2.22
3.621 0.600000 113100 2.50
3.987 0.650000 122528 2.86
4.395 0.700000 131964 3.33
4.859 0.750000 141399 4.00
5.123 0.775000 146131 4.44
5.419 0.800000 150810 5.00
5.763 0.825000 155521 5.71
6.175 0.850000 160254 6.67
6.659 0.875000 164958 8.00
6.939 0.887500 167318 8.89
7.271 0.900000 169661 10.00
7.647 0.912500 172004 11.43
8.103 0.925000 174371 13.33
8.623 0.937500 176733 16.00
8.967 0.943750 177916 17.78
9.351 0.950000 179080 20.00
9.847 0.956250 180260 22.86
10.495 0.962500 181429 26.67
11.567 0.968750 182610 32.00
12.447 0.971875 183195 35.56
13.615 0.975000 183786 40.00
14.999 0.978125 184375 45.71
16.831 0.981250 184964 53.33
19.167 0.984375 185553 64.00
20.735 0.985938 185847 71.11
22.991 0.987500 186142 80.00
27.039 0.989062 186434 91.43
36.159 0.990625 186728 106.67
65.791 0.992188 187023 128.00
161.151 0.992969 187170 142.22
271.103 0.993750 187317 160.00
377.599 0.994531 187465 182.86
475.647 0.995313 187612 213.33
574.463 0.996094 187760 256.00
624.127 0.996484 187833 284.44
675.839 0.996875 187906 320.00
724.991 0.997266 187982 365.71
776.703 0.997656 188054 426.67
825.855 0.998047 188128 512.00
853.503 0.998242 188164 568.89
874.495 0.998437 188203 640.00
904.703 0.998633 188238 731.43
925.183 0.998828 188275 853.33
956.927 0.999023 188311 1024.00
965.119 0.999121 188331 1137.78
978.431 0.999219 188348 1280.00
995.327 0.999316 188367 1462.86
1008.127 0.999414 188385 1706.67
1014.783 0.999512 188404 2048.00
1021.439 0.999561 188414 2275.56
1029.119 0.999609 188422 2560.00
1041.407 0.999658 188431 2925.71
1047.039 0.999707 188440 3413.33
1056.767 0.999756 188450 4096.00
1059.839 0.999780 188454 4551.11
1064.959 0.999805 188460 5120.00
1068.031 0.999829 188464 5851.43
1076.223 0.999854 188468 6826.67
1082.367 0.999878 188472 8192.00
1088.511 0.999890 188476 9102.22
1091.583 0.999902 188477 10240.00
1093.631 0.999915 188479 11702.86
1099.775 0.999927 188482 13653.33
1102.847 0.999939 188484 16384.00
1104.895 0.999945 188486 18204.44
1104.895 0.999951 188486 20480.00
1106.943 0.999957 188487 23405.71
1111.039 0.999963 188489 27306.67
1113.087 0.999969 188490 32768.00
1113.087 0.999973 188490 36408.89
1115.135 0.999976 188491 40960.00
1115.135 0.999979 188491 46811.43
1118.207 0.999982 188492 54613.33
1124.351 0.999985 188493 65536.00
1124.351 0.999986 188493 72817.78
1124.351 0.999988 188493 81920.00
1124.351 0.999989 188493 93622.86
1129.471 0.999991 188494 109226.67
1129.471 0.999992 188494 131072.00
1129.471 0.999993 188494 145635.56
1129.471 0.999994 188494 163840.00
1129.471 0.999995 188494 187245.71
1130.495 0.999995 188495 218453.33
1130.495 1.000000 188495 inf
#[Mean = 8.197, StdDeviation = 56.724]
#[Max = 1129.472, Total count = 188495]
#[Buckets = 27, SubBuckets = 2048]
----------------------------------------------------------
188499 requests in 10.00s, 64.53MB read
Non-2xx or 3xx responses: 188499
Requests/sec: 18859.02
Transfer/sec: 6.46MB
+ sleep 5
+ for i in 1 3 5 7 9 11 13 15 17 19 21 23 25 27 29 31 33 35 37 39 41 43 45 47 49
+ date
Wed Jan 2 19:12:42 CST 2019
+ echo '------run 23000---'
------run 23000---
+ /home/resty/ins_pkg/wrk2/wrk -d 10 -t 4 -c 1000 --latency -R 23000 http://test.com/
Running 10s test @ http://test.com/
4 threads and 1000 connections
Thread Stats Avg Stdev Max +/- Stdev
Latency 4.96ms 23.98ms 1.01s 98.39%
Req/Sec -nan -nan 0.00 0.00%
Latency Distribution (HdrHistogram - Recorded Latency)
50.000% 2.55ms
75.000% 4.56ms
90.000% 7.71ms
99.000% 45.98ms
99.900% 340.99ms
99.990% 963.58ms
99.999% 1.01s
100.000% 1.01s
Detailed Percentile spectrum:
Value Percentile TotalCount 1/(1-Percentile)
0.107 0.000000 1 1.00
0.806 0.100000 20928 1.11
1.176 0.200000 41806 1.25
1.567 0.300000 62705 1.43
2.003 0.400000 83557 1.67
2.549 0.500000 104469 2.00
2.879 0.550000 114901 2.22
3.237 0.600000 125345 2.50
3.621 0.650000 135809 2.86
4.057 0.700000 146253 3.33
4.559 0.750000 156680 4.00
4.843 0.775000 161932 4.44
5.175 0.800000 167142 5.00
5.567 0.825000 172375 5.71
6.083 0.850000 177577 6.67
6.759 0.875000 182782 8.00
7.195 0.887500 185395 8.89
7.711 0.900000 188016 10.00
8.287 0.912500 190627 11.43
8.975 0.925000 193225 13.33
9.887 0.937500 195834 16.00
10.479 0.943750 197144 17.78
11.167 0.950000 198453 20.00
11.967 0.956250 199751 22.86
13.023 0.962500 201056 26.67
14.623 0.968750 202365 32.00
15.767 0.971875 203014 35.56
17.615 0.975000 203669 40.00
19.599 0.978125 204321 45.71
22.543 0.981250 204974 53.33
31.871 0.984375 205627 64.00
36.031 0.985938 205956 71.11
39.807 0.987500 206278 80.00
43.199 0.989062 206605 91.43
48.255 0.990625 206932 106.67
54.687 0.992188 207261 128.00
57.503 0.992969 207421 142.22
62.591 0.993750 207584 160.00
66.303 0.994531 207747 182.86
67.967 0.995313 207917 213.33
70.335 0.996094 208075 256.00
71.423 0.996484 208155 284.44
72.575 0.996875 208240 320.00
73.407 0.997266 208318 365.71
74.751 0.997656 208403 426.67
76.607 0.998047 208482 512.00
77.823 0.998242 208527 568.89
83.135 0.998437 208564 640.00
123.519 0.998633 208604 731.43
246.399 0.998828 208645 853.33
372.479 0.999023 208686 1024.00
423.935 0.999121 208706 1137.78
500.223 0.999219 208726 1280.00
570.879 0.999316 208747 1462.86
626.687 0.999414 208767 1706.67
707.071 0.999512 208788 2048.00
718.847 0.999561 208798 2275.56
755.711 0.999609 208808 2560.00
794.623 0.999658 208818 2925.71
835.583 0.999707 208829 3413.33
873.471 0.999756 208839 4096.00
879.103 0.999780 208844 4551.11
885.247 0.999805 208849 5120.00
920.575 0.999829 208854 5851.43
922.111 0.999854 208859 6826.67
951.807 0.999878 208864 8192.00
963.583 0.999890 208868 9102.22
964.095 0.999902 208871 10240.00
964.607 0.999915 208872 11702.86
967.679 0.999927 208874 13653.33
994.815 0.999939 208877 16384.00
1003.007 0.999945 208878 18204.44
1006.079 0.999951 208880 20480.00
1006.591 0.999957 208881 23405.71
1007.103 0.999963 208884 27306.67
1007.103 0.999969 208884 32768.00
1007.103 0.999973 208884 36408.89
1007.103 0.999976 208884 40960.00
1007.615 0.999979 208885 46811.43
1008.639 0.999982 208886 54613.33
1008.639 0.999985 208886 65536.00
1009.663 0.999986 208887 72817.78
1009.663 0.999988 208887 81920.00
1009.663 0.999989 208887 93622.86
1011.711 0.999991 208888 109226.67
1011.711 0.999992 208888 131072.00
1011.711 0.999993 208888 145635.56
1011.711 0.999994 208888 163840.00
1011.711 0.999995 208888 187245.71
1012.735 0.999995 208889 218453.33
1012.735 1.000000 208889 inf
#[Mean = 4.962, StdDeviation = 23.979]
#[Max = 1012.224, Total count = 208889]
#[Buckets = 27, SubBuckets = 2048]
----------------------------------------------------------
208893 requests in 10.00s, 71.51MB read
Non-2xx or 3xx responses: 208893
Requests/sec: 20894.40
Transfer/sec: 7.15MB
+ sleep 5
+ for i in 1 3 5 7 9 11 13 15 17 19 21 23 25 27 29 31 33 35 37 39 41 43 45 47 49
+ date
Wed Jan 2 19:12:57 CST 2019
+ echo '------run 25000---'
------run 25000---
+ /home/resty/ins_pkg/wrk2/wrk -d 10 -t 4 -c 1000 --latency -R 25000 http://test.com/
Running 10s test @ http://test.com/
4 threads and 1000 connections
Thread Stats Avg Stdev Max +/- Stdev
Latency 5.36ms 15.84ms 503.04ms 95.97%
Req/Sec -nan -nan 0.00 0.00%
Latency Distribution (HdrHistogram - Recorded Latency)
50.000% 3.03ms
75.000% 4.68ms
90.000% 7.29ms
99.000% 45.22ms
99.900% 299.77ms
99.990% 463.10ms
99.999% 496.38ms
100.000% 503.30ms
Detailed Percentile spectrum:
Value Percentile TotalCount 1/(1-Percentile)
0.096 0.000000 1 1.00
1.104 0.100000 22469 1.11
1.600 0.200000 44894 1.25
2.035 0.300000 67342 1.43
2.501 0.400000 89858 1.67
3.029 0.500000 112299 2.00
3.307 0.550000 123520 2.22
3.609 0.600000 134728 2.50
3.933 0.650000 145931 2.86
4.279 0.700000 157131 3.33
4.683 0.750000 168414 4.00
4.911 0.775000 174034 4.44
5.171 0.800000 179592 5.00
5.475 0.825000 185190 5.71
5.871 0.850000 190803 6.67
6.407 0.875000 196400 8.00
6.791 0.887500 199222 8.89
7.287 0.900000 202012 10.00
8.003 0.912500 204814 11.43
9.063 0.925000 207614 13.33
10.815 0.937500 210426 16.00
12.135 0.943750 211825 17.78
14.559 0.950000 213227 20.00
18.879 0.956250 214631 22.86
22.991 0.962500 216035 26.67
26.719 0.968750 217437 32.00
28.559 0.971875 218136 35.56
30.351 0.975000 218840 40.00
32.191 0.978125 219543 45.71
34.175 0.981250 220241 53.33
37.151 0.984375 220942 64.00
39.167 0.985938 221297 71.11
41.503 0.987500 221643 80.00
43.711 0.989062 221995 91.43
46.111 0.990625 222343 106.67
48.543 0.992188 222694 128.00
49.823 0.992969 222870 142.22
51.743 0.993750 223047 160.00
55.615 0.994531 223220 182.86
59.327 0.995313 223395 213.33
63.167 0.996094 223571 256.00
65.375 0.996484 223658 284.44
69.823 0.996875 223746 320.00
79.231 0.997266 223834 365.71
117.503 0.997656 223921 426.67
160.511 0.998047 224009 512.00
191.615 0.998242 224053 568.89
214.015 0.998437 224097 640.00
238.207 0.998633 224141 731.43
270.847 0.998828 224184 853.33
302.847 0.999023 224228 1024.00
311.551 0.999121 224250 1137.78
332.543 0.999219 224272 1280.00
344.063 0.999316 224294 1462.86
358.655 0.999414 224316 1706.67
379.647 0.999512 224338 2048.00
383.231 0.999561 224349 2275.56
389.375 0.999609 224360 2560.00
400.639 0.999658 224371 2925.71
410.623 0.999707 224382 3413.33
421.887 0.999756 224393 4096.00
424.447 0.999780 224398 4551.11
436.991 0.999805 224404 5120.00
439.551 0.999829 224409 5851.43
444.159 0.999854 224415 6826.67
456.703 0.999878 224420 8192.00
459.519 0.999890 224423 9102.22
463.359 0.999902 224426 10240.00
465.151 0.999915 224428 11702.86
473.855 0.999927 224431 13653.33
476.159 0.999939 224434 16384.00
476.415 0.999945 224435 18204.44
477.439 0.999951 224437 20480.00
477.951 0.999957 224438 23405.71
478.463 0.999963 224439 27306.67
481.023 0.999969 224441 32768.00
481.023 0.999973 224441 36408.89
487.935 0.999976 224442 40960.00
495.103 0.999979 224443 46811.43
495.103 0.999982 224443 54613.33
495.359 0.999985 224444 65536.00
495.359 0.999986 224444 72817.78
496.383 0.999988 224445 81920.00
496.383 0.999989 224445 93622.86
496.383 0.999991 224445 109226.67
498.175 0.999992 224446 131072.00
498.175 0.999993 224446 145635.56
498.175 0.999994 224446 163840.00
498.175 0.999995 224446 187245.71
498.175 0.999995 224446 218453.33
503.295 0.999996 224447 262144.00
503.295 1.000000 224447 inf
#[Mean = 5.365, StdDeviation = 15.845]
#[Max = 503.040, Total count = 224447]
#[Buckets = 27, SubBuckets = 2048]
----------------------------------------------------------
224451 requests in 10.00s, 76.84MB read
Non-2xx or 3xx responses: 224451
Requests/sec: 22448.80
Transfer/sec: 7.68MB
+ sleep 5
+ for i in 1 3 5 7 9 11 13 15 17 19 21 23 25 27 29 31 33 35 37 39 41 43 45 47 49
+ date
Wed Jan 2 19:13:12 CST 2019
+ echo '------run 27000---'
------run 27000---
+ /home/resty/ins_pkg/wrk2/wrk -d 10 -t 4 -c 1000 --latency -R 27000 http://test.com/
Running 10s test @ http://test.com/
4 threads and 1000 connections
Thread Stats Avg Stdev Max +/- Stdev
Latency 4.00ms 12.82ms 1.02s 96.15%
Req/Sec -nan -nan 0.00 0.00%
Latency Distribution (HdrHistogram - Recorded Latency)
50.000% 2.20ms
75.000% 3.55ms
90.000% 6.00ms
99.000% 37.73ms
99.900% 56.32ms
99.990% 732.16ms
99.999% 1.02s
100.000% 1.02s
Detailed Percentile spectrum:
Value Percentile TotalCount 1/(1-Percentile)
0.086 0.000000 1 1.00
0.898 0.100000 24278 1.11
1.238 0.200000 48531 1.25
1.543 0.300000 72753 1.43
1.854 0.400000 97036 1.67
2.201 0.500000 121261 2.00
2.399 0.550000 133338 2.22
2.623 0.600000 145476 2.50
2.885 0.650000 157647 2.86
3.187 0.700000 169688 3.33
3.553 0.750000 181850 4.00
3.767 0.775000 187898 4.44
4.013 0.800000 193928 5.00
4.307 0.825000 200041 5.71
4.675 0.850000 206099 6.67
5.199 0.875000 212133 8.00
5.543 0.887500 215170 8.89
5.999 0.900000 218182 10.00
6.655 0.912500 221213 11.43
7.595 0.925000 224237 13.33
9.287 0.937500 227267 16.00
10.735 0.943750 228774 17.78
12.559 0.950000 230295 20.00
14.639 0.956250 231809 22.86
17.263 0.962500 233325 26.67
20.767 0.968750 234841 32.00
22.895 0.971875 235593 35.56
25.807 0.975000 236349 40.00
27.727 0.978125 237110 45.71
30.111 0.981250 237866 53.33
32.959 0.984375 238623 64.00
34.143 0.985938 239002 71.11
35.359 0.987500 239386 80.00
36.735 0.989062 239759 91.43
38.495 0.990625 240149 106.67
40.191 0.992188 240516 128.00
41.471 0.992969 240707 142.22
42.559 0.993750 240896 160.00
43.743 0.994531 241084 182.86
45.471 0.995313 241273 213.33
47.199 0.996094 241465 256.00
47.903 0.996484 241560 284.44
48.799 0.996875 241655 320.00
49.663 0.997266 241749 365.71
50.303 0.997656 241844 426.67
51.103 0.998047 241936 512.00
51.807 0.998242 241983 568.89
52.351 0.998437 242032 640.00
53.567 0.998633 242078 731.43
55.167 0.998828 242125 853.33
56.447 0.999023 242173 1024.00
56.703 0.999121 242197 1137.78
56.991 0.999219 242224 1280.00
57.375 0.999316 242247 1462.86
57.759 0.999414 242267 1706.67
58.687 0.999512 242291 2048.00
59.135 0.999561 242303 2275.56
67.967 0.999609 242315 2560.00
103.807 0.999658 242327 2925.71
174.463 0.999707 242338 3413.33
322.047 0.999756 242350 4096.00
395.775 0.999780 242356 4551.11
469.503 0.999805 242362 5120.00
543.231 0.999829 242368 5851.43
616.959 0.999854 242374 6826.67
690.687 0.999878 242380 8192.00
727.551 0.999890 242383 9102.22
764.415 0.999902 242386 10240.00
800.767 0.999915 242389 11702.86
837.631 0.999927 242392 13653.33
873.983 0.999939 242395 16384.00
878.079 0.999945 242396 18204.44
910.847 0.999951 242398 20480.00
914.431 0.999957 242399 23405.71
947.711 0.999963 242401 27306.67
950.271 0.999969 242402 32768.00
952.319 0.999973 242403 36408.89
984.063 0.999976 242404 40960.00
984.063 0.999979 242404 46811.43
986.111 0.999982 242405 54613.33
988.671 0.999985 242406 65536.00
988.671 0.999986 242406 72817.78
1019.903 0.999988 242407 81920.00
1019.903 0.999989 242407 93622.86
1019.903 0.999991 242407 109226.67
1021.951 0.999992 242408 131072.00
1021.951 0.999993 242408 145635.56
1021.951 0.999994 242408 163840.00
1021.951 0.999995 242408 187245.71
1021.951 0.999995 242408 218453.33
1023.999 0.999996 242409 262144.00
1023.999 1.000000 242409 inf
#[Mean = 3.997, StdDeviation = 12.822]
#[Max = 1023.488, Total count = 242409]
#[Buckets = 27, SubBuckets = 2048]
----------------------------------------------------------
242416 requests in 10.00s, 82.99MB read
Non-2xx or 3xx responses: 242416
Requests/sec: 24243.94
Transfer/sec: 8.30MB
+ sleep 5
+ for i in 1 3 5 7 9 11 13 15 17 19 21 23 25 27 29 31 33 35 37 39 41 43 45 47 49
+ date
Wed Jan 2 19:13:27 CST 2019
+ echo '------run 29000---'
------run 29000---
+ /home/resty/ins_pkg/wrk2/wrk -d 10 -t 4 -c 1000 --latency -R 29000 http://test.com/
Running 10s test @ http://test.com/
4 threads and 1000 connections
Thread Stats Avg Stdev Max +/- Stdev
Latency 11.01ms 63.33ms 1.23s 98.16%
Req/Sec -nan -nan 0.00 0.00%
Latency Distribution (HdrHistogram - Recorded Latency)
50.000% 2.74ms
75.000% 4.43ms
90.000% 8.57ms
99.000% 124.29ms
99.900% 984.06ms
99.990% 1.15s
99.999% 1.21s
100.000% 1.23s
Detailed Percentile spectrum:
Value Percentile TotalCount 1/(1-Percentile)
0.136 0.000000 1 1.00
0.961 0.100000 26014 1.11
1.426 0.200000 52044 1.25
1.833 0.300000 78013 1.43
2.253 0.400000 104040 1.67
2.741 0.500000 129995 2.00
3.009 0.550000 143001 2.22
3.297 0.600000 155975 2.50
3.619 0.650000 168940 2.86
3.985 0.700000 181967 3.33
4.427 0.750000 194940 4.00
4.695 0.775000 201490 4.44
5.015 0.800000 207924 5.00
5.415 0.825000 214438 5.71
5.955 0.850000 220941 6.67
6.751 0.875000 227415 8.00
7.415 0.887500 230666 8.89
8.567 0.900000 233911 10.00
10.663 0.912500 237167 11.43
14.567 0.925000 240411 13.33
21.103 0.937500 243659 16.00
24.735 0.943750 245289 17.78
28.303 0.950000 246905 20.00
31.327 0.956250 248535 22.86
36.831 0.962500 250157 26.67
43.871 0.968750 251778 32.00
48.575 0.971875 252591 35.56
54.719 0.975000 253402 40.00
60.863 0.978125 254220 45.71
73.023 0.981250 255028 53.33
93.247 0.984375 255841 64.00
101.375 0.985938 256250 71.11
110.463 0.987500 256651 80.00
119.679 0.989062 257059 91.43
129.535 0.990625 257467 106.67
218.367 0.992188 257869 128.00
301.311 0.992969 258072 142.22
391.423 0.993750 258275 160.00
478.719 0.994531 258478 182.86
568.319 0.995313 258681 213.33
654.335 0.996094 258885 256.00
699.903 0.996484 258989 284.44
743.935 0.996875 259087 320.00
787.967 0.997266 259190 365.71
828.927 0.997656 259291 426.67
877.055 0.998047 259392 512.00
895.999 0.998242 259445 568.89
921.087 0.998437 259493 640.00
941.567 0.998633 259544 731.43
963.583 0.998828 259595 853.33
986.623 0.999023 259646 1024.00
996.863 0.999121 259673 1137.78
1010.175 0.999219 259696 1280.00
1021.439 0.999316 259722 1462.86
1034.239 0.999414 259749 1706.67
1051.647 0.999512 259773 2048.00
1060.863 0.999561 259786 2275.56
1069.055 0.999609 259799 2560.00
1080.319 0.999658 259812 2925.71
1091.583 0.999707 259823 3413.33
1104.895 0.999756 259837 4096.00
1110.015 0.999780 259843 4551.11
1118.207 0.999805 259849 5120.00
1131.519 0.999829 259855 5851.43
1135.615 0.999854 259861 6826.67
1141.759 0.999878 259869 8192.00
1146.879 0.999890 259871 9102.22
1154.047 0.999902 259874 10240.00
1160.191 0.999915 259877 11702.86
1168.383 0.999927 259880 13653.33
1171.455 0.999939 259884 16384.00
1172.479 0.999945 259886 18204.44
1175.551 0.999951 259888 20480.00
1175.551 0.999957 259888 23405.71
1187.839 0.999963 259890 27306.67
1196.031 0.999969 259892 32768.00
1196.031 0.999973 259892 36408.89
1203.199 0.999976 259895 40960.00
1203.199 0.999979 259895 46811.43
1203.199 0.999982 259895 54613.33
1207.295 0.999985 259896 65536.00
1207.295 0.999986 259896 72817.78
1207.295 0.999988 259896 81920.00
1216.511 0.999989 259897 93622.86
1216.511 0.999991 259897 109226.67
1222.655 0.999992 259898 131072.00
1222.655 0.999993 259898 145635.56
1222.655 0.999994 259898 163840.00
1222.655 0.999995 259898 187245.71
1222.655 0.999995 259898 218453.33
1229.823 0.999996 259899 262144.00
1229.823 1.000000 259899 inf
#[Mean = 11.010, StdDeviation = 63.334]
#[Max = 1228.800, Total count = 259899]
#[Buckets = 27, SubBuckets = 2048]
----------------------------------------------------------
259906 requests in 10.00s, 88.97MB read
Non-2xx or 3xx responses: 259906
Requests/sec: 25999.52
Transfer/sec: 8.90MB
+ sleep 5
+ for i in 1 3 5 7 9 11 13 15 17 19 21 23 25 27 29 31 33 35 37 39 41 43 45 47 49
+ date
Wed Jan 2 19:13:42 CST 2019
+ echo '------run 31000---'
------run 31000---
+ /home/resty/ins_pkg/wrk2/wrk -d 10 -t 4 -c 1000 --latency -R 31000 http://test.com/
Running 10s test @ http://test.com/
4 threads and 1000 connections
Thread Stats Avg Stdev Max +/- Stdev
Latency 24.32ms 111.83ms 1.44s 97.52%
Req/Sec -nan -nan 0.00 0.00%
Latency Distribution (HdrHistogram - Recorded Latency)
50.000% 2.98ms
75.000% 5.31ms
90.000% 28.25ms
99.000% 731.65ms
99.900% 1.20s
99.990% 1.35s
99.999% 1.41s
100.000% 1.44s
Detailed Percentile spectrum:
Value Percentile TotalCount 1/(1-Percentile)
0.134 0.000000 1 1.00
1.028 0.100000 27848 1.11
1.517 0.200000 55666 1.25
1.961 0.300000 83516 1.43
2.435 0.400000 111427 1.67
2.981 0.500000 139156 2.00
3.293 0.550000 153106 2.22
3.647 0.600000 166975 2.50
4.053 0.650000 180918 2.86
4.579 0.700000 194826 3.33
5.307 0.750000 208761 4.00
5.863 0.775000 215708 4.44
6.655 0.800000 222643 5.00
7.879 0.825000 229589 5.71
9.791 0.850000 236544 6.67
15.687 0.875000 243495 8.00
21.247 0.887500 246976 8.89
28.255 0.900000 250450 10.00
39.455 0.912500 253929 11.43
51.615 0.925000 257408 13.33
64.607 0.937500 260895 16.00
71.743 0.943750 262626 17.78
79.679 0.950000 264379 20.00
87.999 0.956250 266107 22.86
98.559 0.962500 267851 26.67
109.887 0.968750 269590 32.00
120.255 0.971875 270453 35.56
135.551 0.975000 271330 40.00
215.423 0.978125 272190 45.71
349.951 0.981250 273061 53.33
485.631 0.984375 273930 64.00
553.471 0.985938 274364 71.11
622.079 0.987500 274801 80.00
690.687 0.989062 275234 91.43
760.319 0.990625 275673 106.67
827.903 0.992188 276103 128.00
863.231 0.992969 276325 142.22
897.023 0.993750 276538 160.00
932.863 0.994531 276760 182.86
967.167 0.995313 276976 213.33
1001.983 0.996094 277190 256.00
1019.903 0.996484 277301 284.44
1039.359 0.996875 277410 320.00
1061.887 0.997266 277521 365.71
1086.463 0.997656 277627 426.67
1113.087 0.998047 277735 512.00
1127.423 0.998242 277789 568.89
1142.783 0.998437 277844 640.00
1161.215 0.998633 277903 731.43
1178.623 0.998828 277952 853.33
1199.103 0.999023 278006 1024.00
1210.367 0.999121 278034 1137.78
1221.631 0.999219 278062 1280.00
1235.967 0.999316 278088 1462.86
1250.303 0.999414 278114 1706.67
1264.639 0.999512 278142 2048.00
1273.855 0.999561 278159 2275.56
1283.071 0.999609 278170 2560.00
1291.263 0.999658 278182 2925.71
1303.551 0.999707 278196 3413.33
1315.839 0.999756 278212 4096.00
1317.887 0.999780 278216 4551.11
1326.079 0.999805 278225 5120.00
1332.223 0.999829 278230 5851.43
1339.391 0.999854 278237 6826.67
1348.607 0.999878 278245 8192.00
1349.631 0.999890 278247 9102.22
1355.775 0.999902 278250 10240.00
1361.919 0.999915 278254 11702.86
1370.111 0.999927 278257 13653.33
1375.231 0.999939 278261 16384.00
1379.327 0.999945 278263 18204.44
1380.351 0.999951 278264 20480.00
1390.591 0.999957 278266 23405.71
1393.663 0.999963 278268 27306.67
1398.783 0.999969 278270 32768.00
1398.783 0.999973 278270 36408.89
1405.951 0.999976 278272 40960.00
1405.951 0.999979 278272 46811.43
1405.951 0.999982 278272 54613.33
1413.119 0.999985 278273 65536.00
1414.143 0.999986 278274 72817.78
1414.143 0.999988 278274 81920.00
1423.359 0.999989 278275 93622.86
1423.359 0.999991 278275 109226.67
1423.359 0.999992 278275 131072.00
1432.575 0.999993 278276 145635.56
1432.575 0.999994 278276 163840.00
1432.575 0.999995 278276 187245.71
1432.575 0.999995 278276 218453.33
1432.575 0.999996 278276 262144.00
1437.695 0.999997 278277 291271.11
1437.695 1.000000 278277 inf
#[Mean = 24.322, StdDeviation = 111.835]
#[Max = 1436.672, Total count = 278277]
#[Buckets = 27, SubBuckets = 2048]
----------------------------------------------------------
278281 requests in 10.00s, 95.27MB read
Non-2xx or 3xx responses: 278281
Requests/sec: 27833.46
Transfer/sec: 9.53MB
+ sleep 5
+ for i in 1 3 5 7 9 11 13 15 17 19 21 23 25 27 29 31 33 35 37 39 41 43 45 47 49
+ date
Wed Jan 2 19:13:57 CST 2019
+ echo '------run 33000---'
------run 33000---
+ /home/resty/ins_pkg/wrk2/wrk -d 10 -t 4 -c 1000 --latency -R 33000 http://test.com/
Running 10s test @ http://test.com/
4 threads and 1000 connections
Thread Stats Avg Stdev Max +/- Stdev
Latency 15.16ms 58.20ms 1.20s 96.15%
Req/Sec -nan -nan 0.00 0.00%
Latency Distribution (HdrHistogram - Recorded Latency)
50.000% 3.78ms
75.000% 7.34ms
90.000% 39.20ms
99.000% 116.74ms
99.900% 951.29ms
99.990% 1.11s
99.999% 1.18s
100.000% 1.20s
Detailed Percentile spectrum:
Value Percentile TotalCount 1/(1-Percentile)
0.127 0.000000 1 1.00
1.030 0.100000 29889 1.11
1.632 0.200000 59771 1.25
2.241 0.300000 89721 1.43
2.955 0.400000 119566 1.67
3.783 0.500000 149447 2.00
4.243 0.550000 164361 2.22
4.755 0.600000 179344 2.50
5.383 0.650000 194299 2.86
6.163 0.700000 209220 3.33
7.339 0.750000 224112 4.00
8.327 0.775000 231574 4.44
10.071 0.800000 239042 5.00
12.631 0.825000 246519 5.71
17.279 0.850000 253994 6.67
26.047 0.875000 261457 8.00
32.655 0.887500 265189 8.89
39.199 0.900000 268923 10.00
44.927 0.912500 272674 11.43
50.559 0.925000 276403 13.33
56.351 0.937500 280130 16.00
59.935 0.943750 282004 17.78
64.351 0.950000 283862 20.00
68.863 0.956250 285736 22.86
74.239 0.962500 287603 26.67
79.551 0.968750 289470 32.00
82.623 0.971875 290415 35.56
86.079 0.975000 291340 40.00
89.535 0.978125 292272 45.71
93.887 0.981250 293208 53.33
99.391 0.984375 294136 64.00
103.103 0.985938 294601 71.11
106.687 0.987500 295067 80.00
114.303 0.989062 295537 91.43
118.591 0.990625 296007 106.67
125.439 0.992188 296468 128.00
164.479 0.992969 296703 142.22
230.143 0.993750 296935 160.00
318.207 0.994531 297168 182.86
425.983 0.995313 297402 213.33
534.527 0.996094 297635 256.00
589.311 0.996484 297753 284.44
646.655 0.996875 297869 320.00
704.511 0.997266 297985 365.71
758.783 0.997656 298102 426.67
814.079 0.998047 298219 512.00
841.727 0.998242 298277 568.89
871.423 0.998437 298336 640.00
898.559 0.998633 298394 731.43
926.207 0.998828 298453 853.33
954.367 0.999023 298511 1024.00
968.703 0.999121 298541 1137.78
982.527 0.999219 298569 1280.00
997.887 0.999316 298598 1462.86
1010.687 0.999414 298628 1706.67
1027.583 0.999512 298657 2048.00
1032.191 0.999561 298671 2275.56
1039.871 0.999609 298686 2560.00
1048.575 0.999658 298700 2925.71
1057.791 0.999707 298719 3413.33
1062.911 0.999756 298731 4096.00
1069.055 0.999780 298737 4551.11
1076.223 0.999805 298745 5120.00
1085.439 0.999829 298752 5851.43
1090.559 0.999854 298759 6826.67
1105.919 0.999878 298766 8192.00
1108.991 0.999890 298771 9102.22
1116.159 0.999902 298775 10240.00
1119.231 0.999915 298777 11702.86
1128.447 0.999927 298781 13653.33
1135.615 0.999939 298784 16384.00
1139.711 0.999945 298786 18204.44
1145.855 0.999951 298789 20480.00
1147.903 0.999957 298790 23405.71
1154.047 0.999963 298792 27306.67
1160.191 0.999969 298793 32768.00
1166.335 0.999973 298794 36408.89
1169.407 0.999976 298795 40960.00
1171.455 0.999979 298796 46811.43
1173.503 0.999982 298797 54613.33
1180.671 0.999985 298798 65536.00
1180.671 0.999986 298798 72817.78
1184.767 0.999988 298799 81920.00
1184.767 0.999989 298799 93622.86
1189.887 0.999991 298800 109226.67
1189.887 0.999992 298800 131072.00
1189.887 0.999993 298800 145635.56
1195.007 0.999994 298801 163840.00
1195.007 0.999995 298801 187245.71
1195.007 0.999995 298801 218453.33
1195.007 0.999996 298801 262144.00
1195.007 0.999997 298801 291271.11
1199.103 0.999997 298802 327680.00
1199.103 1.000000 298802 inf
#[Mean = 15.164, StdDeviation = 58.199]
#[Max = 1198.080, Total count = 298802]
#[Buckets = 27, SubBuckets = 2048]
----------------------------------------------------------
298807 requests in 10.00s, 102.29MB read
Non-2xx or 3xx responses: 298807
Requests/sec: 29890.21
Transfer/sec: 10.23MB
+ sleep 5
+ for i in 1 3 5 7 9 11 13 15 17 19 21 23 25 27 29 31 33 35 37 39 41 43 45 47 49
+ date
Wed Jan 2 19:14:12 CST 2019
+ echo '------run 35000---'
------run 35000---
+ /home/resty/ins_pkg/wrk2/wrk -d 10 -t 4 -c 1000 --latency -R 35000 http://test.com/
Running 10s test @ http://test.com/
4 threads and 1000 connections
Thread Stats Avg Stdev Max +/- Stdev
Latency 25.18ms 74.87ms 1.19s 93.30%
Req/Sec -nan -nan 0.00 0.00%
Latency Distribution (HdrHistogram - Recorded Latency)
50.000% 3.38ms
75.000% 7.63ms
90.000% 73.02ms
99.000% 292.10ms
99.900% 970.75ms
99.990% 1.12s
99.999% 1.17s
100.000% 1.19s
Detailed Percentile spectrum:
Value Percentile TotalCount 1/(1-Percentile)
0.102 0.000000 1 1.00
0.997 0.100000 31530 1.11
1.517 0.200000 63056 1.25
2.057 0.300000 94632 1.43
2.675 0.400000 126140 1.67
3.383 0.500000 157599 2.00
3.781 0.550000 173366 2.22
4.231 0.600000 189195 2.50
4.763 0.650000 204912 2.86
5.535 0.700000 220664 3.33
7.631 0.750000 236403 4.00
10.863 0.775000 244288 4.44
18.911 0.800000 252161 5.00
29.327 0.825000 260040 5.71
44.863 0.850000 267921 6.67
58.623 0.875000 275814 8.00
65.375 0.887500 279735 8.89
73.023 0.900000 283677 10.00
82.879 0.912500 287631 11.43
93.247 0.925000 291569 13.33
103.871 0.937500 295517 16.00
110.591 0.943750 297475 17.78
116.543 0.950000 299448 20.00
125.887 0.956250 301415 22.86
143.615 0.962500 303377 26.67
175.871 0.968750 305344 32.00
197.631 0.971875 306331 35.56
214.527 0.975000 307316 40.00
232.703 0.978125 308303 45.71
250.239 0.981250 309286 53.33
265.215 0.984375 310287 64.00
272.639 0.985938 310770 71.11
282.111 0.987500 311262 80.00
287.743 0.989062 311769 91.43
296.447 0.990625 312247 106.67
304.127 0.992188 312743 128.00
309.247 0.992969 312978 142.22
377.855 0.993750 313225 160.00
465.407 0.994531 313470 182.86
550.911 0.995313 313716 213.33
637.439 0.996094 313963 256.00
680.447 0.996484 314085 284.44
725.503 0.996875 314209 320.00
770.047 0.997266 314333 365.71
814.079 0.997656 314455 426.67
859.647 0.998047 314578 512.00
882.175 0.998242 314639 568.89
904.191 0.998437 314702 640.00
927.743 0.998633 314763 731.43
949.759 0.998828 314824 853.33
971.775 0.999023 314886 1024.00
985.599 0.999121 314917 1137.78
997.375 0.999219 314949 1280.00
1010.175 0.999316 314980 1462.86
1023.487 0.999414 315009 1706.67
1039.359 0.999512 315042 2048.00
1047.039 0.999561 315056 2275.56
1054.719 0.999609 315071 2560.00
1067.007 0.999658 315089 2925.71
1075.199 0.999707 315101 3413.33
1087.487 0.999756 315118 4096.00
1093.631 0.999780 315124 4551.11
1099.775 0.999805 315135 5120.00
1102.847 0.999829 315140 5851.43
1110.015 0.999854 315147 6826.67
1120.255 0.999878 315155 8192.00
1122.303 0.999890 315159 9102.22
1125.375 0.999902 315165 10240.00
1127.423 0.999915 315167 11702.86
1129.471 0.999927 315170 13653.33
1133.567 0.999939 315175 16384.00
1138.687 0.999945 315176 18204.44
1142.783 0.999951 315178 20480.00
1145.855 0.999957 315180 23405.71
1147.903 0.999963 315182 27306.67
1150.975 0.999969 315184 32768.00
1153.023 0.999973 315185 36408.89
1157.119 0.999976 315186 40960.00
1159.167 0.999979 315187 46811.43
1162.239 0.999982 315189 54613.33
1162.239 0.999985 315189 65536.00
1162.239 0.999986 315189 72817.78
1167.359 0.999988 315190 81920.00
1167.359 0.999989 315190 93622.86
1171.455 0.999991 315191 109226.67
1171.455 0.999992 315191 131072.00
1171.455 0.999993 315191 145635.56
1185.791 0.999994 315192 163840.00
1185.791 0.999995 315192 187245.71
1185.791 0.999995 315192 218453.33
1185.791 0.999996 315192 262144.00
1185.791 0.999997 315192 291271.11
1190.911 0.999997 315193 327680.00
1190.911 1.000000 315193 inf
#[Mean = 25.178, StdDeviation = 74.866]
#[Max = 1189.888, Total count = 315193]
#[Buckets = 27, SubBuckets = 2048]
----------------------------------------------------------
315199 requests in 10.00s, 107.90MB read
Non-2xx or 3xx responses: 315199
Requests/sec: 31529.39
Transfer/sec: 10.79MB
+ sleep 5
+ for i in 1 3 5 7 9 11 13 15 17 19 21 23 25 27 29 31 33 35 37 39 41 43 45 47 49
+ date
Wed Jan 2 19:14:27 CST 2019
+ echo '------run 37000---'
------run 37000---
+ /home/resty/ins_pkg/wrk2/wrk -d 10 -t 4 -c 1000 --latency -R 37000 http://test.com/
Running 10s test @ http://test.com/
4 threads and 1000 connections
Thread Stats Avg Stdev Max +/- Stdev
Latency 88.74ms 264.94ms 2.17s 92.93%
Req/Sec -nan -nan 0.00 0.00%
Latency Distribution (HdrHistogram - Recorded Latency)
50.000% 6.40ms
75.000% 28.61ms
90.000% 148.74ms
99.000% 1.47s
99.900% 2.02s
99.990% 2.14s
99.999% 2.16s
100.000% 2.17s
Detailed Percentile spectrum:
Value Percentile TotalCount 1/(1-Percentile)
0.146 0.000000 1 1.00
1.638 0.100000 32479 1.11
2.635 0.200000 64927 1.25
3.647 0.300000 97378 1.43
4.827 0.400000 129902 1.67
6.399 0.500000 162332 2.00
7.535 0.550000 178544 2.22
9.223 0.600000 194771 2.50
12.543 0.650000 211019 2.86
18.495 0.700000 227218 3.33
28.607 0.750000 243453 4.00
37.663 0.775000 251564 4.44
54.111 0.800000 259678 5.00
73.343 0.825000 267799 5.71
93.247 0.850000 275927 6.67
113.407 0.875000 284034 8.00
126.847 0.887500 288090 8.89
148.735 0.900000 292142 10.00
170.111 0.912500 296194 11.43
300.543 0.925000 300250 13.33
456.703 0.937500 304305 16.00
536.575 0.943750 306336 17.78
619.519 0.950000 308366 20.00
707.583 0.956250 310395 22.86
808.959 0.962500 312427 26.67
920.575 0.968750 314455 32.00
976.383 0.971875 315472 35.56
1034.751 0.975000 316479 40.00
1100.799 0.978125 317495 45.71
1177.599 0.981250 318519 53.33
1267.711 0.984375 319524 64.00
1318.911 0.985938 320029 71.11
1374.207 0.987500 320536 80.00
1432.575 0.989062 321048 91.43
1500.159 0.990625 321556 106.67
1566.719 0.992188 322060 128.00
1604.607 0.992969 322314 142.22
1646.591 0.993750 322566 160.00
1686.527 0.994531 322819 182.86
1732.607 0.995313 323076 213.33
1786.879 0.996094 323329 256.00
1824.767 0.996484 323452 284.44
1852.415 0.996875 323582 320.00
1883.135 0.997266 323705 365.71
1914.879 0.997656 323832 426.67
1951.743 0.998047 323960 512.00
1968.127 0.998242 324028 568.89
1978.367 0.998437 324088 640.00
1989.631 0.998633 324151 731.43
2008.063 0.998828 324214 853.33
2019.327 0.999023 324277 1024.00
2023.423 0.999121 324315 1137.78
2027.519 0.999219 324339 1280.00
2040.831 0.999316 324371 1462.86
2050.047 0.999414 324404 1706.67
2066.431 0.999512 324437 2048.00
2072.575 0.999561 324451 2275.56
2076.671 0.999609 324468 2560.00
2079.743 0.999658 324482 2925.71
2085.887 0.999707 324500 3413.33
2092.031 0.999756 324513 4096.00
2095.103 0.999780 324521 4551.11
2099.199 0.999805 324529 5120.00
2107.391 0.999829 324537 5851.43
2121.727 0.999854 324545 6826.67
2134.015 0.999878 324555 8192.00
2136.063 0.999890 324557 9102.22
2138.111 0.999902 324562 10240.00
2140.159 0.999915 324566 11702.86
2146.303 0.999927 324569 13653.33
2156.543 0.999939 324577 16384.00
2156.543 0.999945 324577 18204.44
2156.543 0.999951 324577 20480.00
2158.591 0.999957 324584 23405.71
2158.591 0.999963 324584 27306.67
2158.591 0.999969 324584 32768.00
2158.591 0.999973 324584 36408.89
2160.639 0.999976 324585 40960.00
2162.687 0.999979 324589 46811.43
2162.687 0.999982 324589 54613.33
2162.687 0.999985 324589 65536.00
2162.687 0.999986 324589 72817.78
2162.687 0.999988 324589 81920.00
2162.687 0.999989 324589 93622.86
2166.783 0.999991 324591 109226.67
2166.783 0.999992 324591 131072.00
2166.783 0.999993 324591 145635.56
2166.783 0.999994 324591 163840.00
2166.783 0.999995 324591 187245.71
2166.783 0.999995 324591 218453.33
2166.783 0.999996 324591 262144.00
2166.783 0.999997 324591 291271.11
2170.879 0.999997 324592 327680.00
2170.879 1.000000 324592 inf
#[Mean = 88.740, StdDeviation = 264.936]
#[Max = 2168.832, Total count = 324592]
#[Buckets = 27, SubBuckets = 2048]
----------------------------------------------------------
324597 requests in 10.00s, 111.12MB read
Non-2xx or 3xx responses: 324597
Requests/sec: 32466.62
Transfer/sec: 11.11MB
+ sleep 5
+ for i in 1 3 5 7 9 11 13 15 17 19 21 23 25 27 29 31 33 35 37 39 41 43 45 47 49
+ date
Wed Jan 2 19:14:42 CST 2019
+ echo '------run 39000---'
------run 39000---
+ /home/resty/ins_pkg/wrk2/wrk -d 10 -t 4 -c 1000 --latency -R 39000 http://test.com/
Running 10s test @ http://test.com/
4 threads and 1000 connections
Thread Stats Avg Stdev Max +/- Stdev
Latency 77.76ms 233.72ms 2.46s 95.21%
Req/Sec -nan -nan 0.00 0.00%
Latency Distribution (HdrHistogram - Recorded Latency)
50.000% 6.75ms
75.000% 54.05ms
90.000% 145.92ms
99.000% 1.38s
99.900% 2.17s
99.990% 2.39s
99.999% 2.45s
100.000% 2.46s
Detailed Percentile spectrum:
Value Percentile TotalCount 1/(1-Percentile)
0.118 0.000000 1 1.00
1.398 0.100000 34322 1.11
2.251 0.200000 68682 1.25
3.181 0.300000 102960 1.43
4.371 0.400000 137337 1.67
6.747 0.500000 171587 2.00
9.663 0.550000 188714 2.22
13.455 0.600000 205878 2.50
18.479 0.650000 223039 2.86
30.047 0.700000 240181 3.33
54.047 0.750000 257339 4.00
65.983 0.775000 265909 4.44
81.855 0.800000 274485 5.00
99.135 0.825000 283060 5.71
122.239 0.850000 291638 6.67
137.087 0.875000 300226 8.00
140.287 0.887500 304607 8.89
145.919 0.900000 308836 10.00
171.647 0.912500 313103 11.43
180.479 0.925000 317398 13.33
189.183 0.937500 321679 16.00
205.439 0.943750 323811 17.78
276.735 0.950000 325956 20.00
388.351 0.956250 328093 22.86
529.407 0.962500 330243 26.67
670.207 0.968750 332394 32.00
747.519 0.971875 333456 35.56
837.119 0.975000 334534 40.00
920.575 0.978125 335599 45.71
1010.687 0.981250 336677 53.33
1095.679 0.984375 337749 64.00
1151.999 0.985938 338280 71.11
1233.919 0.987500 338820 80.00
1327.103 0.989062 339359 91.43
1423.359 0.990625 339888 106.67
1520.639 0.992188 340426 128.00
1568.767 0.992969 340694 142.22
1627.135 0.993750 340960 160.00
1690.623 0.994531 341227 182.86
1760.255 0.995313 341495 213.33
1830.911 0.996094 341768 256.00
1869.823 0.996484 341898 284.44
1908.735 0.996875 342033 320.00
1946.623 0.997266 342165 365.71
1987.583 0.997656 342303 426.67
2029.567 0.998047 342434 512.00
2053.119 0.998242 342501 568.89
2076.671 0.998437 342567 640.00
2105.343 0.998633 342634 731.43
2140.159 0.998828 342704 853.33
2174.975 0.999023 342768 1024.00
2195.455 0.999121 342802 1137.78
2213.887 0.999219 342835 1280.00
2234.367 0.999316 342871 1462.86
2256.895 0.999414 342902 1706.67
2279.423 0.999512 342938 2048.00
2287.615 0.999561 342953 2275.56
2301.951 0.999609 342971 2560.00
2314.239 0.999658 342989 2925.71
2324.479 0.999707 343004 3413.33
2338.815 0.999756 343021 4096.00
2347.007 0.999780 343029 4551.11
2353.151 0.999805 343036 5120.00
2363.391 0.999829 343047 5851.43
2373.631 0.999854 343053 6826.67
2381.823 0.999878 343062 8192.00
2387.967 0.999890 343066 9102.22
2390.015 0.999902 343070 10240.00
2398.207 0.999915 343074 11702.86
2404.351 0.999927 343078 13653.33
2414.591 0.999939 343084 16384.00
2416.639 0.999945 343086 18204.44
2418.687 0.999951 343087 20480.00
2424.831 0.999957 343089 23405.71
2430.975 0.999963 343093 27306.67
2430.975 0.999969 343093 32768.00
2433.023 0.999973 343094 36408.89
2435.071 0.999976 343095 40960.00
2437.119 0.999979 343096 46811.43
2441.215 0.999982 343097 54613.33
2445.311 0.999985 343098 65536.00
2449.407 0.999986 343100 72817.78
2449.407 0.999988 343100 81920.00
2449.407 0.999989 343100 93622.86
2449.407 0.999991 343100 109226.67
2451.455 0.999992 343101 131072.00
2451.455 0.999993 343101 145635.56
2451.455 0.999994 343101 163840.00
2453.503 0.999995 343102 187245.71
2453.503 0.999995 343102 218453.33
2453.503 0.999996 343102 262144.00
2453.503 0.999997 343102 291271.11
2453.503 0.999997 343102 327680.00
2457.599 0.999997 343103 374491.43
2457.599 1.000000 343103 inf
#[Mean = 77.760, StdDeviation = 233.724]
#[Max = 2455.552, Total count = 343103]
#[Buckets = 27, SubBuckets = 2048]
----------------------------------------------------------
343109 requests in 10.00s, 117.46MB read
Non-2xx or 3xx responses: 343109
Requests/sec: 34317.95
Transfer/sec: 11.75MB
+ sleep 5
+ for i in 1 3 5 7 9 11 13 15 17 19 21 23 25 27 29 31 33 35 37 39 41 43 45 47 49
+ date
Wed Jan 2 19:14:57 CST 2019
+ echo '------run 41000---'
------run 41000---
+ /home/resty/ins_pkg/wrk2/wrk -d 10 -t 4 -c 1000 --latency -R 41000 http://test.com/
Running 10s test @ http://test.com/
4 threads and 1000 connections
Thread Stats Avg Stdev Max +/- Stdev
Latency 63.50ms 151.55ms 1.66s 94.69%
Req/Sec -nan -nan 0.00 0.00%
Latency Distribution (HdrHistogram - Recorded Latency)
50.000% 8.92ms
75.000% 59.33ms
90.000% 173.31ms
99.000% 915.46ms
99.900% 1.31s
99.990% 1.55s
99.999% 1.63s
100.000% 1.66s
Detailed Percentile spectrum:
Value Percentile TotalCount 1/(1-Percentile)
0.137 0.000000 1 1.00
1.660 0.100000 36243 1.11
2.739 0.200000 72428 1.25
4.007 0.300000 108672 1.43
5.583 0.400000 144859 1.67
8.919 0.500000 181033 2.00
11.823 0.550000 199173 2.22
16.135 0.600000 217255 2.50
21.919 0.650000 235389 2.86
32.591 0.700000 253450 3.33
59.327 0.750000 271559 4.00
73.087 0.775000 280641 4.44
91.007 0.800000 289659 5.00
109.695 0.825000 298725 5.71
124.351 0.850000 307762 6.67
137.983 0.875000 316872 8.00
148.735 0.887500 321341 8.89
173.311 0.900000 325873 10.00
189.951 0.912500 330411 11.43
195.839 0.925000 335011 13.33
203.007 0.937500 339450 16.00
209.919 0.943750 341707 17.78
221.951 0.950000 343972 20.00
262.399 0.956250 346233 22.86
321.279 0.962500 348493 26.67
399.615 0.968750 350755 32.00
450.559 0.971875 351883 35.56
508.415 0.975000 353018 40.00
573.951 0.978125 354155 45.71
645.119 0.981250 355282 53.33
724.991 0.984375 356410 64.00
773.119 0.985938 356979 71.11
824.831 0.987500 357541 80.00
880.127 0.989062 358106 91.43
939.519 0.990625 358677 106.67
993.791 0.992188 359238 128.00
1021.951 0.992969 359525 142.22
1049.599 0.993750 359809 160.00
1077.247 0.994531 360087 182.86
1106.943 0.995313 360370 213.33
1137.663 0.996094 360663 256.00
1154.047 0.996484 360797 284.44
1170.431 0.996875 360936 320.00
1189.887 0.997266 361084 365.71
1212.415 0.997656 361219 426.67
1235.967 0.998047 361362 512.00
1247.231 0.998242 361430 568.89
1259.519 0.998437 361504 640.00
1270.783 0.998633 361574 731.43
1287.167 0.998828 361643 853.33
1309.695 0.999023 361713 1024.00
1325.055 0.999121 361748 1137.78
1347.583 0.999219 361784 1280.00
1367.039 0.999316 361820 1462.86
1389.567 0.999414 361854 1706.67
1413.119 0.999512 361890 2048.00
1424.383 0.999561 361908 2275.56
1441.791 0.999609 361926 2560.00
1454.079 0.999658 361943 2925.71
1470.463 0.999707 361960 3413.33
1484.799 0.999756 361978 4096.00
1491.967 0.999780 361987 4551.11
1502.207 0.999805 361996 5120.00
1515.519 0.999829 362005 5851.43
1527.807 0.999854 362014 6826.67
1540.095 0.999878 362024 8192.00
1546.239 0.999890 362027 9102.22
1552.383 0.999902 362032 10240.00
1561.599 0.999915 362036 11702.86
1567.743 0.999927 362040 13653.33
1577.983 0.999939 362044 16384.00
1586.175 0.999945 362047 18204.44
1589.247 0.999951 362049 20480.00
1597.439 0.999957 362051 23405.71
1600.511 0.999963 362053 27306.67
1606.655 0.999969 362055 32768.00
1612.799 0.999973 362057 36408.89
1615.871 0.999976 362058 40960.00
1622.015 0.999979 362059 46811.43
1626.111 0.999982 362060 54613.33
1628.159 0.999985 362061 65536.00
1631.231 0.999986 362062 72817.78
1631.231 0.999988 362062 81920.00
1638.399 0.999989 362063 93622.86
1638.399 0.999991 362063 109226.67
1640.447 0.999992 362064 131072.00
1640.447 0.999993 362064 145635.56
1640.447 0.999994 362064 163840.00
1650.687 0.999995 362065 187245.71
1650.687 0.999995 362065 218453.33
1650.687 0.999996 362065 262144.00
1650.687 0.999997 362065 291271.11
1650.687 0.999997 362065 327680.00
1663.999 0.999997 362066 374491.43
1663.999 1.000000 362066 inf
#[Mean = 63.501, StdDeviation = 151.548]
#[Max = 1662.976, Total count = 362066]
#[Buckets = 27, SubBuckets = 2048]
----------------------------------------------------------
362075 requests in 10.00s, 123.95MB read
Non-2xx or 3xx responses: 362075
Requests/sec: 36219.12
Transfer/sec: 12.40MB
+ sleep 5
+ for i in 1 3 5 7 9 11 13 15 17 19 21 23 25 27 29 31 33 35 37 39 41 43 45 47 49
+ date
Wed Jan 2 19:15:12 CST 2019
+ echo '------run 43000---'
------run 43000---
+ /home/resty/ins_pkg/wrk2/wrk -d 10 -t 4 -c 1000 --latency -R 43000 http://test.com/
Running 10s test @ http://test.com/
4 threads and 1000 connections
Thread Stats Avg Stdev Max +/- Stdev
Latency 173.31ms 331.21ms 2.58s 89.80%
Req/Sec -nan -nan 0.00 0.00%
Latency Distribution (HdrHistogram - Recorded Latency)
50.000% 39.87ms
75.000% 152.19ms
90.000% 517.89ms
99.000% 1.64s
99.900% 2.26s
99.990% 2.48s
99.999% 2.56s
100.000% 2.59s
Detailed Percentile spectrum:
Value Percentile TotalCount 1/(1-Percentile)
0.173 0.000000 1 1.00
2.795 0.100000 37220 1.11
5.331 0.200000 74452 1.25
9.871 0.300000 111654 1.43
18.575 0.400000 148893 1.67
39.871 0.500000 186052 2.00
58.143 0.550000 204660 2.22
84.095 0.600000 223269 2.50
109.375 0.650000 241894 2.86
129.471 0.700000 260483 3.33
152.191 0.750000 279166 4.00
172.031 0.775000 288406 4.44
215.551 0.800000 297685 5.00
254.207 0.825000 307030 5.71
269.567 0.850000 316292 6.67
365.055 0.875000 325601 8.00
436.223 0.887500 330249 8.89
517.887 0.900000 334904 10.00
609.791 0.912500 339550 11.43
707.071 0.925000 344209 13.33
827.903 0.937500 348853 16.00
889.343 0.943750 351194 17.78
953.343 0.950000 353509 20.00
1023.999 0.956250 355840 22.86
1097.727 0.962500 358176 26.67
1176.575 0.968750 360477 32.00
1221.631 0.971875 361646 35.56
1268.735 0.975000 362829 40.00
1317.887 0.978125 363967 45.71
1380.351 0.981250 365139 53.33
1454.079 0.984375 366295 64.00
1499.135 0.985938 366878 71.11
1549.311 0.987500 367454 80.00
1607.679 0.989062 368043 91.43
1665.023 0.990625 368624 106.67
1726.463 0.992188 369198 128.00
1762.303 0.992969 369492 142.22
1802.239 0.993750 369781 160.00
1846.271 0.994531 370073 182.86
1888.255 0.995313 370362 213.33
1938.431 0.996094 370655 256.00
1964.031 0.996484 370800 284.44
1994.751 0.996875 370946 320.00
2030.591 0.997266 371087 365.71
2069.503 0.997656 371233 426.67
2127.871 0.998047 371385 512.00
2152.447 0.998242 371455 568.89
2177.023 0.998437 371528 640.00
2205.695 0.998633 371599 731.43
2234.367 0.998828 371673 853.33
2263.039 0.999023 371743 1024.00
2279.423 0.999121 371777 1137.78
2301.951 0.999219 371817 1280.00
2318.335 0.999316 371852 1462.86
2336.767 0.999414 371889 1706.67
2357.247 0.999512 371924 2048.00
2367.487 0.999561 371949 2275.56
2373.631 0.999609 371960 2560.00
2385.919 0.999658 371979 2925.71
2404.351 0.999707 371995 3413.33
2420.735 0.999756 372014 4096.00
2424.831 0.999780 372023 4551.11
2433.023 0.999805 372032 5120.00
2443.263 0.999829 372041 5851.43
2451.455 0.999854 372051 6826.67
2463.743 0.999878 372060 8192.00
2469.887 0.999890 372064 9102.22
2476.031 0.999902 372070 10240.00
2484.223 0.999915 372074 11702.86
2492.415 0.999927 372077 13653.33
2506.751 0.999939 372082 16384.00
2514.943 0.999945 372084 18204.44
2521.087 0.999951 372086 20480.00
2529.279 0.999957 372089 23405.71
2533.375 0.999963 372091 27306.67
2539.519 0.999969 372094 32768.00
2539.519 0.999973 372094 36408.89
2541.567 0.999976 372095 40960.00
2547.711 0.999979 372098 46811.43
2547.711 0.999982 372098 54613.33
2555.903 0.999985 372099 65536.00
2555.903 0.999986 372099 72817.78
2557.951 0.999988 372100 81920.00
2559.999 0.999989 372101 93622.86
2559.999 0.999991 372101 109226.67
2568.191 0.999992 372102 131072.00
2568.191 0.999993 372102 145635.56
2568.191 0.999994 372102 163840.00
2574.335 0.999995 372103 187245.71
2574.335 0.999995 372103 218453.33
2574.335 0.999996 372103 262144.00
2574.335 0.999997 372103 291271.11
2574.335 0.999997 372103 327680.00
2586.623 0.999997 372104 374491.43
2586.623 1.000000 372104 inf
#[Mean = 173.314, StdDeviation = 331.208]
#[Max = 2584.576, Total count = 372104]
#[Buckets = 27, SubBuckets = 2048]
----------------------------------------------------------
372112 requests in 10.00s, 127.38MB read
Non-2xx or 3xx responses: 372112
Requests/sec: 37221.25
Transfer/sec: 12.74MB
+ sleep 5
+ for i in 1 3 5 7 9 11 13 15 17 19 21 23 25 27 29 31 33 35 37 39 41 43 45 47 49
+ date
Wed Jan 2 19:15:27 CST 2019
+ echo '------run 45000---'
------run 45000---
+ /home/resty/ins_pkg/wrk2/wrk -d 10 -t 4 -c 1000 --latency -R 45000 http://test.com/
Running 10s test @ http://test.com/
4 threads and 1000 connections
Thread Stats Avg Stdev Max +/- Stdev
Latency 303.14ms 433.63ms 2.62s 84.73%
Req/Sec -nan -nan 0.00 0.00%
Latency Distribution (HdrHistogram - Recorded Latency)
50.000% 95.93ms
75.000% 423.93ms
90.000% 971.78ms
99.000% 1.82s
99.900% 2.17s
99.990% 2.40s
99.999% 2.57s
100.000% 2.62s
Detailed Percentile spectrum:
Value Percentile TotalCount 1/(1-Percentile)
0.193 0.000000 1 1.00
6.575 0.100000 37732 1.11
11.359 0.200000 75506 1.25
16.751 0.300000 113238 1.43
37.759 0.400000 150907 1.67
95.935 0.500000 188640 2.00
127.935 0.550000 207498 2.22
178.815 0.600000 226375 2.50
240.383 0.650000 245226 2.86
301.823 0.700000 264107 3.33
423.935 0.750000 282976 4.00
492.031 0.775000 292396 4.44
569.343 0.800000 301814 5.00
653.823 0.825000 311258 5.71
747.519 0.850000 320687 6.67
852.479 0.875000 330148 8.00
909.311 0.887500 334850 8.89
971.775 0.900000 339541 10.00
1039.871 0.912500 344275 11.43
1108.991 0.925000 349010 13.33
1187.839 0.937500 353737 16.00
1234.943 0.943750 356083 17.78
1285.119 0.950000 358424 20.00
1341.439 0.956250 360768 22.86
1405.951 0.962500 363132 26.67
1478.655 0.968750 365501 32.00
1516.543 0.971875 366687 35.56
1557.503 0.975000 367836 40.00
1602.559 0.978125 369019 45.71
1654.783 0.981250 370211 53.33
1711.103 0.984375 371374 64.00
1740.799 0.985938 371982 71.11
1771.519 0.987500 372562 80.00
1803.263 0.989062 373156 91.43
1837.055 0.990625 373734 106.67
1875.967 0.992188 374336 128.00
1896.447 0.992969 374615 142.22
1918.975 0.993750 374908 160.00
1942.527 0.994531 375203 182.86
1969.151 0.995313 375501 213.33
1999.871 0.996094 375797 256.00
2015.231 0.996484 375943 284.44
2032.639 0.996875 376093 320.00
2052.095 0.997266 376236 365.71
2072.575 0.997656 376381 426.67
2097.151 0.998047 376534 512.00
2109.439 0.998242 376606 568.89
2123.775 0.998437 376684 640.00
2138.111 0.998633 376750 731.43
2154.495 0.998828 376825 853.33
2172.927 0.999023 376901 1024.00
2183.167 0.999121 376936 1137.78
2193.407 0.999219 376973 1280.00
2205.695 0.999316 377015 1462.86
2217.983 0.999414 377045 1706.67
2238.463 0.999512 377085 2048.00
2248.703 0.999561 377102 2275.56
2258.943 0.999609 377119 2560.00
2271.231 0.999658 377138 2925.71
2283.519 0.999707 377156 3413.33
2297.855 0.999756 377175 4096.00
2306.047 0.999780 377183 4551.11
2318.335 0.999805 377192 5120.00
2336.767 0.999829 377201 5851.43
2353.151 0.999854 377210 6826.67
2373.631 0.999878 377220 8192.00
2385.919 0.999890 377224 9102.22
2402.303 0.999902 377229 10240.00
2412.543 0.999915 377233 11702.86
2435.071 0.999927 377238 13653.33
2449.407 0.999939 377242 16384.00
2463.743 0.999945 377245 18204.44
2469.887 0.999951 377247 20480.00
2473.983 0.999957 377249 23405.71
2482.175 0.999963 377252 27306.67
2492.415 0.999969 377254 32768.00
2498.559 0.999973 377255 36408.89
2506.751 0.999976 377256 40960.00
2519.039 0.999979 377257 46811.43
2543.615 0.999982 377259 54613.33
2555.903 0.999985 377260 65536.00
2555.903 0.999986 377260 72817.78
2566.143 0.999988 377261 81920.00
2566.143 0.999989 377261 93622.86
2578.431 0.999991 377262 109226.67
2592.767 0.999992 377263 131072.00
2592.767 0.999993 377263 145635.56
2592.767 0.999994 377263 163840.00
2592.767 0.999995 377263 187245.71
2607.103 0.999995 377264 218453.33
2607.103 0.999996 377264 262144.00
2607.103 0.999997 377264 291271.11
2607.103 0.999997 377264 327680.00
2607.103 0.999997 377264 374491.43
2619.391 0.999998 377265 436906.67
2619.391 1.000000 377265 inf
#[Mean = 303.138, StdDeviation = 433.626]
#[Max = 2617.344, Total count = 377265]
#[Buckets = 27, SubBuckets = 2048]
----------------------------------------------------------
377272 requests in 10.00s, 129.15MB read
Non-2xx or 3xx responses: 377272
Requests/sec: 37735.74
Transfer/sec: 12.92MB
+ sleep 5
+ for i in 1 3 5 7 9 11 13 15 17 19 21 23 25 27 29 31 33 35 37 39 41 43 45 47 49
+ date
Wed Jan 2 19:15:42 CST 2019
+ echo '------run 47000---'
------run 47000---
+ /home/resty/ins_pkg/wrk2/wrk -d 10 -t 4 -c 1000 --latency -R 47000 http://test.com/
Running 10s test @ http://test.com/
4 threads and 1000 connections
Thread Stats Avg Stdev Max +/- Stdev
Latency 341.64ms 494.53ms 2.60s 83.72%
Req/Sec -nan -nan 0.00 0.00%
Latency Distribution (HdrHistogram - Recorded Latency)
50.000% 110.21ms
75.000% 481.28ms
90.000% 1.14s
99.000% 2.00s
99.900% 2.38s
99.990% 2.52s
99.999% 2.57s
100.000% 2.60s
Detailed Percentile spectrum:
Value Percentile TotalCount 1/(1-Percentile)
0.171 0.000000 1 1.00
7.547 0.100000 38146 1.11
12.503 0.200000 76316 1.25
19.135 0.300000 114429 1.43
62.111 0.400000 152533 1.67
110.207 0.500000 190725 2.00
129.343 0.550000 209747 2.22
151.039 0.600000 228790 2.50
194.559 0.650000 247851 2.86
321.279 0.700000 266947 3.33
481.279 0.750000 285984 4.00
572.415 0.775000 295542 4.44
673.279 0.800000 305092 5.00
779.263 0.825000 314603 5.71
897.535 0.850000 324129 6.67
1014.271 0.875000 333672 8.00
1073.151 0.887500 338423 8.89
1136.639 0.900000 343181 10.00
1207.295 0.912500 347974 11.43
1287.167 0.925000 352773 13.33
1372.159 0.937500 357490 16.00
1419.263 0.943750 359873 17.78
1469.439 0.950000 362254 20.00
1525.759 0.956250 364634 22.86
1588.223 0.962500 367042 26.67
1654.783 0.968750 369406 32.00
1692.671 0.971875 370627 35.56
1732.607 0.975000 371798 40.00
1778.687 0.978125 372969 45.71
1825.791 0.981250 374176 53.33
1881.087 0.984375 375361 64.00
1912.831 0.985938 375952 71.11
1945.599 0.987500 376551 80.00
1981.439 0.989062 377155 91.43
2020.351 0.990625 377740 106.67
2063.359 0.992188 378335 128.00
2085.887 0.992969 378635 142.22
2109.439 0.993750 378929 160.00
2136.063 0.994531 379225 182.86
2164.735 0.995313 379531 213.33
2195.455 0.996094 379818 256.00
2213.887 0.996484 379974 284.44
2232.319 0.996875 380121 320.00
2250.751 0.997266 380267 365.71
2273.279 0.997656 380419 426.67
2299.903 0.998047 380570 512.00
2314.239 0.998242 380643 568.89
2328.575 0.998437 380714 640.00
2342.911 0.998633 380787 731.43
2361.343 0.998828 380862 853.33
2381.823 0.999023 380944 1024.00
2392.063 0.999121 380981 1137.78
2400.255 0.999219 381010 1280.00
2412.543 0.999316 381047 1462.86
2426.879 0.999414 381089 1706.67
2439.167 0.999512 381121 2048.00
2447.359 0.999561 381141 2275.56
2457.599 0.999609 381165 2560.00
2463.743 0.999658 381178 2925.71
2471.935 0.999707 381196 3413.33
2482.175 0.999756 381215 4096.00
2488.319 0.999780 381226 4551.11
2494.463 0.999805 381234 5120.00
2500.607 0.999829 381244 5851.43
2506.751 0.999854 381253 6826.67
2514.943 0.999878 381264 8192.00
2516.991 0.999890 381267 9102.22
2521.087 0.999902 381270 10240.00
2527.231 0.999915 381275 11702.86
2535.423 0.999927 381280 13653.33
2539.519 0.999939 381285 16384.00
2541.567 0.999945 381287 18204.44
2543.615 0.999951 381289 20480.00
2545.663 0.999957 381291 23405.71
2549.759 0.999963 381295 27306.67
2551.807 0.999969 381297 32768.00
2551.807 0.999973 381297 36408.89
2555.903 0.999976 381298 40960.00
2557.951 0.999979 381299 46811.43
2564.095 0.999982 381302 54613.33
2564.095 0.999985 381302 65536.00
2564.095 0.999986 381302 72817.78
2568.191 0.999988 381303 81920.00
2568.191 0.999989 381303 93622.86
2570.239 0.999991 381304 109226.67
2572.287 0.999992 381305 131072.00
2572.287 0.999993 381305 145635.56
2572.287 0.999994 381305 163840.00
2572.287 0.999995 381305 187245.71
2584.575 0.999995 381306 218453.33
2584.575 0.999996 381306 262144.00
2584.575 0.999997 381306 291271.11
2584.575 0.999997 381306 327680.00
2584.575 0.999997 381306 374491.43
2600.959 0.999998 381307 436906.67
2600.959 1.000000 381307 inf
#[Mean = 341.644, StdDeviation = 494.528]
#[Max = 2598.912, Total count = 381307]
#[Buckets = 27, SubBuckets = 2048]
----------------------------------------------------------
381313 requests in 10.00s, 130.53MB read
Non-2xx or 3xx responses: 381313
Requests/sec: 38141.82
Transfer/sec: 13.06MB
+ sleep 5
+ for i in 1 3 5 7 9 11 13 15 17 19 21 23 25 27 29 31 33 35 37 39 41 43 45 47 49
+ date
Wed Jan 2 19:15:58 CST 2019
+ echo '------run 49000---'
------run 49000---
+ /home/resty/ins_pkg/wrk2/wrk -d 10 -t 4 -c 1000 --latency -R 49000 http://test.com/
Running 10s test @ http://test.com/
4 threads and 1000 connections
Thread Stats Avg Stdev Max +/- Stdev
Latency 515.49ms 619.44ms 4.60s 81.76%
Req/Sec -nan -nan 0.00 0.00%
Latency Distribution (HdrHistogram - Recorded Latency)
50.000% 196.99ms
75.000% 880.64ms
90.000% 1.52s
99.000% 2.26s
99.900% 2.67s
99.990% 2.85s
99.999% 4.56s
100.000% 4.60s
Detailed Percentile spectrum:
Value Percentile TotalCount 1/(1-Percentile)
0.222 0.000000 2 1.00
9.439 0.100000 38291 1.11
17.119 0.200000 76580 1.25
40.127 0.300000 114869 1.43
101.567 0.400000 153181 1.67
196.991 0.500000 191448 2.00
292.095 0.550000 210645 2.22
411.647 0.600000 229760 2.50
559.615 0.650000 248939 2.86
713.727 0.700000 268037 3.33
880.639 0.750000 287184 4.00
969.727 0.775000 296751 4.44
1064.959 0.800000 306313 5.00
1166.335 0.825000 315925 5.71
1268.735 0.850000 325547 6.67
1383.423 0.875000 335062 8.00
1446.911 0.887500 339876 8.89
1515.519 0.900000 344610 10.00
1586.175 0.912500 349421 11.43
1661.951 0.925000 354174 13.33
1742.847 0.937500 358967 16.00
1786.879 0.943750 361349 17.78
1832.959 0.950000 363772 20.00
1881.087 0.956250 366142 22.86
1932.287 0.962500 368529 26.67
1987.583 0.968750 370953 32.00
2017.279 0.971875 372140 35.56
2049.023 0.975000 373346 40.00
2081.791 0.978125 374511 45.71
2119.679 0.981250 375732 53.33
2162.687 0.984375 376946 64.00
2185.215 0.985938 377510 71.11
2211.839 0.987500 378111 80.00
2242.559 0.989062 378733 91.43
2275.327 0.990625 379314 106.67
2314.239 0.992188 379917 128.00
2334.719 0.992969 380220 142.22
2357.247 0.993750 380511 160.00
2383.871 0.994531 380801 182.86
2412.543 0.995313 381096 213.33
2447.359 0.996094 381392 256.00
2467.839 0.996484 381545 284.44
2490.367 0.996875 381696 320.00
2514.943 0.997266 381842 365.71
2543.615 0.997656 381998 426.67
2572.287 0.998047 382140 512.00
2590.719 0.998242 382222 568.89
2607.103 0.998437 382289 640.00
2627.583 0.998633 382366 731.43
2650.111 0.998828 382445 853.33
2672.639 0.999023 382520 1024.00
2682.879 0.999121 382550 1137.78
2697.215 0.999219 382586 1280.00
2713.599 0.999316 382626 1462.86
2727.935 0.999414 382664 1706.67
2744.319 0.999512 382699 2048.00
2752.511 0.999561 382718 2275.56
2760.703 0.999609 382737 2560.00
2770.943 0.999658 382756 2925.71
2781.183 0.999707 382773 3413.33
2795.519 0.999756 382792 4096.00
2801.663 0.999780 382803 4551.11
2811.903 0.999805 382814 5120.00
2818.047 0.999829 382820 5851.43
2826.239 0.999854 382830 6826.67
2836.479 0.999878 382839 8192.00
2840.575 0.999890 382843 9102.22
2848.767 0.999902 382849 10240.00
2859.007 0.999915 382854 11702.86
2863.103 0.999927 382857 13653.33
2875.391 0.999939 382862 16384.00
2883.583 0.999945 382864 18204.44
4403.199 0.999951 382867 20480.00
4423.679 0.999957 382869 23405.71
4452.351 0.999963 382871 27306.67
4481.023 0.999969 382874 32768.00
4489.215 0.999973 382875 36408.89
4501.503 0.999976 382876 40960.00
4509.695 0.999979 382877 46811.43
4526.079 0.999982 382878 54613.33
4550.655 0.999985 382880 65536.00
4550.655 0.999986 382880 72817.78
4562.943 0.999988 382881 81920.00
4562.943 0.999989 382881 93622.86
4575.231 0.999991 382882 109226.67
4583.423 0.999992 382883 131072.00
4583.423 0.999993 382883 145635.56
4583.423 0.999994 382883 163840.00
4583.423 0.999995 382883 187245.71
4591.615 0.999995 382884 218453.33
4591.615 0.999996 382884 262144.00
4591.615 0.999997 382884 291271.11
4591.615 0.999997 382884 327680.00
4591.615 0.999997 382884 374491.43
4603.903 0.999998 382885 436906.67
4603.903 1.000000 382885 inf
#[Mean = 515.491, StdDeviation = 619.437]
#[Max = 4599.808, Total count = 382885]
#[Buckets = 27, SubBuckets = 2048]
----------------------------------------------------------
382891 requests in 10.00s, 131.07MB read
Socket errors: connect 0, read 0, write 0, timeout 18
Non-2xx or 3xx responses: 382891
Requests/sec: 38301.18
Transfer/sec: 13.11MB
+ sleep 5
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment