Jmeter multiple concurrent users in single thread group

↘锁芯ラ 提交于 2019-12-02 08:40:42

If you need more control and accuracy use Ultimate Thread Group JMeter plugin (instead of regular Thread Group)

Set Start Thread Count as 100, with 0 initial delay and 0 Startup Time, with positive Hold time, your thread will hold 100 max users

General example:

If your computer can't handle generating load, you may need distributed testing setup

To achieve this, you can use Synchronizing_Timer. Add Synchronization Timer as a child of your GET Request.

The purpose of the SyncTimer is to block threads until X number of threads have been blocked, and then they are all released at once. A SyncTimer can thus create large instant loads at various points of the test plan.

Secondly, to keep a constant load of 100 Request Per Second/Hit Per Second for a time duration, you can use Throughput Shaping Timer. Make sure, you add the Loop Count to Forever and Duration accordingly in Thread Group.

JMeter acts as follows:

  1. The number of threads specified in the Thread Group is being kicked off during the ramp-up period
  2. Each thread starts executing Samplers upside down (or according to the Logic Controllers)
  3. When thread doesn't have any more Samplers to execute or loops to iterate it's being shut down

Assuming all above you may run into the situation when some threads have already finished their work and were shut down and some haven't yet been started. Check out JMeter Test Results: Why the Actual Users Number is Lower than Expected article for more comprehensive explanation if needed

Therefore the solutions are in:

  • Provide more "iterations" on Thread Group level to let your users loop over, this way you will have 100 concurrent users
  • If you need to perform some form of Spike Testing and don't want/cannot increase the number of loops just use Synchronizing Timer, this way JMeter will pause the threads until the desired amount is reached and release them at exactly the same moment

It is not suggested to use Ramp-Up period as 0.

I think you are making confusion between concurrency (Related to virtual users) and simultaneous (Related to requests or samplers).

To hit requests simultaneously, use the Synchronizing Timer as a child of your requests. It will pause X number of threads and then released at once. And before that, to maintain the concurrency at 100 users, try to use the ramp-up time accordingly (i.e 10 seconds). So it will take 10 seconds for 100 users alive on the server and then hit the requests for 100 users simultaneously.

It doesn't matter which thread group you use but if you maintain the concurrency for more period of time (hold that concurrency), then use Ultimate Thread Group or you can use the loop count accordingly.

If you want to perform spike testing, then the regular Thread group is fine. But you have to remember that, some of your threads might already finish their work and were shut down so you won't see the expected number of the concurrent user.

Here are the example screenshots for 1 minute Test duration (100 users ramp-up time 30 sec + hold load time 20 sec + 10 sec for ramp downtime)

Ultimate Thread Group Config:

Test Results (100 requests at once):

Test Results (100 Concurrent users):

Hope it helps you to understand.

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!