-
Notifications
You must be signed in to change notification settings - Fork 1.4k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Using vegeta in a community driven benchmarking project #720
Comments
We actually use Testing this line https://github.com/the-benchmarker/web-frameworks/blob/aedc5b0a39a18840b7818906f389f6277b66cbd1/rust/actix/src/main.rs#L12 with I have
and with {
"latencies": {
"total": 19222679102,
"mean": 80362,
"50th": 80846,
"90th": 89392,
"95th": 99321,
"99th": 160442,
"max": 7349046,
"min": 14917
},
"bytes_in": {
"total": 0,
"mean": 0
},
"bytes_out": {
"total": 0,
"mean": 0
},
"earliest": "2025-01-03T09:26:06.784554552+01:00",
"latest": "2025-01-03T09:26:16.78456101+01:00",
"end": "2025-01-03T09:26:16.784617968+01:00",
"duration": 10000006458,
"wait": 56958,
"requests": 239201,
"rate": 23920.084552409397,
"throughput": 23919.948309255804,
"success": 1,
"status_codes": {
"200": 239201
},
"errors": []
} and with an other rust based https://github.com/the-benchmarker/web-frameworks/blob/aedc5b0a39a18840b7818906f389f6277b66cbd1/rust/axum/src/main.rs#L8
{
"latencies": {
"total": 29042425944,
"mean": 82294,
"50th": 81431,
"90th": 89874,
"95th": 97185,
"99th": 169418,
"max": 12406035,
"min": 13542
},
"bytes_in": {
"total": 0,
"mean": 0
},
"bytes_out": {
"total": 0,
"mean": 0
},
"earliest": "2025-01-03T09:52:19.095929094+01:00",
"latest": "2025-01-03T09:52:34.095824521+01:00",
"end": "2025-01-03T09:52:34.095885729+01:00",
"duration": 14999895427,
"wait": 61208,
"requests": 352907,
"rate": 23527.297354671085,
"throughput": 23527.20135047244,
"success": 1,
"status_codes": {
"200": 352907
},
"errors": []
}
and with a nim based framework =>https://github.com/the-benchmarker/web-frameworks/blob/aedc5b0a39a18840b7818906f389f6277b66cbd1/nim/prologue/server.nim#L3
{
"latencies": {
"total": 29113548225,
"mean": 94888,
"50th": 87280,
"90th": 109852,
"95th": 130171,
"99th": 259565,
"max": 4068316,
"min": 21292
},
"bytes_in": {
"total": 0,
"mean": 0
},
"bytes_out": {
"total": 0,
"mean": 0
},
"earliest": "2025-01-03T10:15:11.805718673+01:00",
"latest": "2025-01-03T10:15:26.805640684+01:00",
"end": "2025-01-03T10:15:26.80573285+01:00",
"duration": 14999922011,
"wait": 92166,
"requests": 306818,
"rate": 20454.639682459612,
"throughput": 20454.514001090334,
"success": 1,
"status_codes": {
"200": 306818
},
"errors": []
}
Any idea on how to explain those figures (I mean the difference between those tools) ? |
Hi,
I'm leading a benchmarking project https://github.com/the-benchmarker/web-frameworks.
We are currently using wrk, but it seems not accurate to our goal.
I've starred in a thread to discuss changing our toolset, the-benchmarker/web-frameworks#8088.
Any insights of any community members here is very appreciated ❤️
The text was updated successfully, but these errors were encountered: