Performance test and RPS

I got a website to test its performance. The website is backed by a SQL Server database.

I am not quite sure about how the RPS (Request Per Second) is related to the performance test. And how should I set my RPS. Someone told me that if the RPS is too high, the performance test is meaningless. Why?

Thanks.

1 Answer

Do you want to test the performance or do you want to measure it - like measuring actual peak performance?

For testing, you usually have a performance spec, like saying, "the web site shall be able to handle 150 request per second". Then you create a test suite that sends 150 requests per second and you verifiy, that all requests are handled with the specified service quality.

For measuring - again you need one input: a specification, that tells you you maximum allowed time between an incoming request and an outgoing response. Then you could increase the RPS rate until the limits are reached.

1

Your Answer

Sign up or log in

Sign up using Google Sign up using Facebook Sign up using Email and Password

Post as a guest

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge that you have read and understand our privacy policy and code of conduct.

You Might Also Like