Home > other >  How to find out max number of concurrent requests per second that server could handle in Jmeter
How to find out max number of concurrent requests per second that server could handle in Jmeter

Time:09-27

I would like to load test https://app-staging.servespark.com site. I have completed scripts on Jmeter for login and am able to go to any page.

How can find out the max number of concurrent requests per second that the server could handle in Jmeter?

Is it possible in the Jmeter? Please advise.

CodePudding user response:

You could try this; https://jmeter-plugins.org/wiki/ConcurrencyThreadGroup/

And ramp up the users to a value higher than expected.

CodePudding user response:

It looks like you need to conduct a Stress Test, something like:

  1. Start with 1 user

  2. Gradually increase the load at the same time looking into the following charts:

  3. At the beginning the response time should not change and the throughput (number of transactions per second) should increase by the same factor as the number of users increase

  4. At certain stage of test you will notice that response time will start growing and the number of transactions per second will go down. This will indicate a bottleneck

  5. You may continue increasing the load to see at which stage the errors will start occurring

  6. And finally you can decrease the load gradually as well to see if the application gets back to normal when the load comes down (i.e. errors disappear, throughput grows, etc.)

  • Related