-
Notifications
You must be signed in to change notification settings - Fork 3k
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
CPU bound from locust vs CPU bound from the web app? #188
Comments
Hi,
|
That's very helpful, thanks! Just to clarify one point:
Why would the response time increase? Is it because the requests waiting to be processed accumulate in some kind of queue, which causes some overhead for the web app? Thanks, |
It's common that when a web server can't process any more simultaneous requests, it queues up incoming requests to be handled once the current ones are processed. In that case you would see increasing response times, but you could also start to see a lot of error responses if the requests are dropped due to a timeout before they get processed. |
Awesome, thanks! |
Hi all,
When locust is running with multiple slaves and the web app is also running with multiple processes, it is sometimes difficult to interpret the resulting QPS. In particular, it is unclear if the QPS is:
Probably 3) is trickier (isn't it?), but is there a simple way in locust to distinguish between 1) and 2)?
Thanks,
The text was updated successfully, but these errors were encountered: