Bogdan  Dubyk
Bogdan Dubyk

Reputation: 5540

Jmeter test plan run requests not consistently

I have such test plan:

enter image description here

The issue here is that requests not consistently. It should run win request for each bid request if bid response code is 200 but in my case, it running all bid requests and only after start running win requests

Description:

Upvotes: 1

Views: 113

Answers (1)

Ori Marko
Ori Marko

Reputation: 58772

With low ramp up period first requests will be sent in parallel on multi threads test.

If you read Thread Group

You should increase the "ramp-up" until it equals to the number of threads.

The ramp-up period tells JMeter how long to take to "ramp-up" to the full number of threads chosen. If 10 threads are used, and the ramp-up period is 100 seconds, then JMeter will take 100 seconds to get all 10 threads up and running.

You can check related dynamic ramp up question

Upvotes: 2

Related Questions