Rajesh
Rajesh

Reputation: 27

How to send 500 request per second in 100 loop count using Jmeter

I have to test 500 request per second in a loop count of 100 (Totally 50,000 request) using Jmeter. I have to send 500 each sec irrespective of me getting a response, i.e.even if my previous 500 requests fails, I have to send my next 500 requests.

Currently I have used a constant timer of 1 second and set the Thread count to 500 and Loop count to 100 with a Ramp up period of 1.

And I don't think I'm getting the desired results correctly.

So what settings I must use to achieve the desired result.Jmeter Thread group img

Upvotes: 0

Views: 974

Answers (1)

Dmitri T
Dmitri T

Reputation: 168002

If you mean:

  1. send 500 requests
  2. wait 1 second
  3. send another 500 requests
  4. wait 1 second
  5. repeat steps 1-2 98 more times

you need to amend your test plan configuration to include Synchronizing Timer with Number of Simultaneous Users to Group by set to 500 and replace the Constant Timer with the Flow Control Action sampler

Upvotes: 1

Related Questions