Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
menu search
person
Welcome To Ask or Share your Answers For Others

Categories

Suppose I've 50 users. I want the load of 49 users on the website in parallel with 50th user who will be performing a time-consuming single action only once. How can I achieve such concurrency in Jmeter?

question from:https://stackoverflow.com/questions/65841006/simulating-single-action-in-parallel-with-recurring-actions-in-jmeter

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
718 views
Welcome To Ask or Share your Answers For Others

1 Answer

Normally you should be using different Thread Groups to represent different business groups of virtual users so you can have:

  1. 1 Thread Group of 49 users doing the browsing or whatever
  2. 1 Thread Group of 1 user doing a time-consuming single action

Alternatively you can go for a single Thread Group of 50 users and use Throughput Controller to limit execution of the single action to 1:

enter image description here

More information: Running JMeter Samplers with Defined Percentage Probability


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
...