-
Notifications
You must be signed in to change notification settings - Fork 3k
Difference between Req/Sec
and Requests/sec
?
#259
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
Comments
Hi @palaiyacw, Req/Sec represents numbers obtained per thread, while Requests/sec is a total from all threads. |
I ran
|
@palaiyacw - interesting observation - although the Req/Sec and Requests/Sec will never be the same even if using 1 thread because it depends on number of connections. |
@knasim can you give more information why Req/sec and Requests/sec are different for 1 thread case? |
@lanphan - that is related to IO and the # of sockets it can open on the OS it is running on you have to look at all the figures that the program returns after the stress test. it is not a question of looking at one over the others. you have to do a composite analysis. there is also another flag you can provide to get more details on latency as well. |
Thanks @defanator & @knasim! In addition to |
It'd better to add this to the first page readme. |
@defanator |
I suppose these two are fairly unrelated. If we're gonna tell people what the benchmarking's qps is, I'd say the number of |
Hm, if I'm runing with Because they are not for me. My I'm not sure if indicates I am not understanding "connections" and "threads" settings correctly, or that I'm not understanding what req/sec and/or Requests/sec mean. I am just getting started using wrk and I love it, thank you for it! But of course I want to be sure I understand what the reports mean to make sure I'm drawing the correct conclusions from it! More docs would be super useful. Here are two examples against two different sites -- both using a
and
I don't understand what to take from the fact that these are so different. |
what is the difference between
Req/Sec
andRequests/sec
? In the below example which is given in your documentation. both the values are different. Could you please provide the links for the same also where it is explained?The text was updated successfully, but these errors were encountered: