Last active
August 29, 2015 14:00
-
-
Save qpfiffer/11124919 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
# Tests performed on a stock FX-8350 | |
# Data was put into each DB with `curl -X POST -d 'testdata' <url>` | |
# golegd frontend: | |
λ:~/src/wrk ./wrk -t8 -c400 -d30s http://localhost:8081/test/test | |
Running 30s test @ http://localhost:8081/test/test | |
8 threads and 400 connections | |
Thread Stats Avg Stdev Max +/- Stdev | |
Latency 8.83ms 4.87ms 221.73ms 94.33% | |
Req/Sec 6.01k 1.16k 17.20k 79.29% | |
1373370 requests in 30.00s, 172.89MB read | |
Requests/sec: 45781.89 | |
Transfer/sec: 5.76MB | |
#erlang frontend: | |
(master) | |
λ:~/src/wrk ./wrk -t8 -c400 -d30s http://localhost:8080/test | |
Running 30s test @ http://localhost:8080/test | |
8 threads and 400 connections | |
Thread Stats Avg Stdev Max +/- Stdev | |
Latency 12.35ms 63.51ms 556.83ms 97.16% | |
Req/Sec 4.71k 2.17k 16.56k 69.91% | |
1071331 requests in 30.00s, 151.21MB read | |
Socket errors: connect 0, read 0, write 0, timeout 85 | |
Requests/sec: 35711.49 | |
Transfer/sec: 5.04MB | |
#erlang frontend with backlog connections bumped to 100: | |
(master) | |
λ:~/src/wrk ./wrk -t8 -c400 -d30s http://localhost:8080/test | |
Running 30s test @ http://localhost:8080/test | |
8 threads and 400 connections | |
Thread Stats Avg Stdev Max +/- Stdev | |
Latency 4.12ms 18.06ms 437.59ms 99.71% | |
Req/Sec 4.73k 1.83k 16.22k 69.79% | |
1084146 requests in 30.00s, 153.02MB read | |
Socket errors: connect 0, read 0, write 0, timeout 34 | |
Requests/sec: 36138.83 | |
Transfer/sec: 5.10MB |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment