Last active
October 10, 2017 15:42
-
-
Save vinyll/300dc5e4024b0b0afcfdc763ab240f36 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
./bench.sh wrk | |
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> | |
Running bench with wrk for aiohttp | |
HTTP/1.1 200 OK | |
Content-Length: 25 | |
Content-Type: text/plain; charset=utf-8 | |
Date: Tue, 10 Oct 2017 15:40:36 GMT | |
Server: Python/3.6 aiohttp/2.2.4 | |
{ | |
"message": "Hello bench" | |
} | |
Running 20s test @ http://127.0.0.1:8000/hello/bench | |
20 threads and 100 connections | |
Thread Stats Avg Stdev Max +/- Stdev | |
Latency 50.11ms 10.47ms 84.24ms 67.45% | |
Req/Sec 100.12 26.25 202.00 71.04% | |
39956 requests in 20.09s, 6.71MB read | |
Requests/sec: 1989.07 | |
Transfer/sec: 341.87KB | |
real 0m20.150s | |
user 0m0.466s | |
sys 0m1.802s | |
<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<< | |
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> | |
Running bench with wrk for falcon | |
HTTP/1.1 200 OK | |
Connection: close | |
Date: Tue, 10 Oct 2017 15:40:59 GMT | |
Server: gunicorn/19.7.1 | |
content-length: 25 | |
content-type: application/json; charset=UTF-8 | |
{ | |
"message": "Hello bench" | |
} | |
Running 20s test @ http://127.0.0.1:8000/hello/bench | |
20 threads and 100 connections | |
Thread Stats Avg Stdev Max +/- Stdev | |
Latency 84.49ms 22.30ms 177.50ms 82.46% | |
Req/Sec 59.85 22.58 140.00 72.29% | |
16365 requests in 20.10s, 3.00MB read | |
Requests/sec: 814.34 | |
Transfer/sec: 152.69KB | |
real 0m20.123s | |
user 0m0.352s | |
sys 0m2.530s | |
<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<< | |
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> | |
Running bench with wrk for roll | |
HTTP/1.1 200 OK | |
Content-Length: 25 | |
Content-Type: application/json | |
{ | |
"message": "Hello bench" | |
} | |
Running 20s test @ http://127.0.0.1:8000/hello/bench | |
20 threads and 100 connections | |
Thread Stats Avg Stdev Max +/- Stdev | |
Latency 7.09ms 9.80ms 182.55ms 98.73% | |
Req/Sec 802.75 191.53 1.19k 68.04% | |
319023 requests in 20.06s, 29.21MB read | |
Requests/sec: 15901.56 | |
Transfer/sec: 1.46MB | |
real 0m39.791s | |
user 0m1.732s | |
sys 0m6.726s | |
<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<< | |
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> | |
Running bench with wrk for sanic | |
2017-10-10 11:42:02,398: INFO: Goin' Fast @ http://127.0.0.1:8000 | |
2017-10-10 11:42:02,403: INFO: Starting worker [79655] | |
HTTP/1.1 200 OK | |
Connection: keep-alive | |
Content-Length: 25 | |
Content-Type: application/json | |
Keep-Alive: 60 | |
{ | |
"message": "Hello bench" | |
} | |
Running 20s test @ http://127.0.0.1:8000/hello/bench | |
20 threads and 100 connections | |
Thread Stats Avg Stdev Max +/- Stdev | |
Latency 6.93ms 2.66ms 41.46ms 72.33% | |
Req/Sec 729.98 145.38 1.25k 67.85% | |
291312 requests in 20.06s, 37.78MB read | |
Requests/sec: 14521.85 | |
Transfer/sec: 1.88MB | |
real 0m20.085s | |
user 0m1.784s | |
sys 0m6.148s | |
2017-10-10 11:42:23,671: INFO: Stopping worker [79655] | |
2017-10-10 11:42:23,672: INFO: Server Stopped | |
<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<< |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment