Ashwinkumar Iyer
Ashwinkumar Iyer

Reputation: 35

Jmeter: Distributed testing

a very common scenario which we all face.

  1. I have a Master and 2 slaves.
  2. A CSV data set with 20 unique users.
  3. I want to run 10 users on each slave simultaneously.
  4. Should I split 20 users in to 2 files of 10 each and upload the CSV in each of the Slaves? Or
  5. 20 in each slaves and the thread count as 20?

I want to run for all the users but not twice.

As always has been Looking forward for thoughts?

Best.

Upvotes: 0

Views: 236

Answers (1)

Dmitri T
Dmitri T

Reputation: 168072

The scenario is not common and it doesn't make a lot of sense either.

Whatever.

All JMeter slaves are executing the same test plan and know nothing about each other so:

  1. "split 20 users in to 2 files of 10 each and upload the CSV in each of the Slaves"
  2. set the number of threads in the Thread Group to 10, in case of 2 slaves you will have 20 virtual users in total

More information:

Upvotes: 1

Related Questions