mujeeb
mujeeb

Reputation: 819

jMeter: Restart loop only after the previous loop is complete

I am running a load test using jMeter. With 10 concurrent threads. Loop count is forever. The test data is fetched from a csv file. The csv file has only 10 entries. When the thread group is still processing 1 loop, jmeter starts the 2nd loop.

Therefore the test cases with same test data is running concurrently and issues are reported. I want jMeter to start the next loop only after all the threads in the previous loop have completed processing.

Is there a configuration for this. Thanks in advance.

Upvotes: 1

Views: 997

Answers (1)

Konstantin Dobroliubov
Konstantin Dobroliubov

Reputation: 669

The highest element in your Jmeter tree (named Test Plan) has "Run thread groups consecutively (i.e. run groups one at a time)" option. Once enabled, thread groups will be implemented according to the order defined in your test plan: 1st group, then 2nd group, etc.

Upvotes: 1

Related Questions