How to send 4000+ requests in exactly 1 second?

后端 未结 4 1586
无人及你
无人及你 2021-01-17 08:29

I have an HTTP GET request. I need to send the request to the application server for more than 4000 times exactly in 1 second.

I\'m sending

4条回答
  •  深忆病人
    2021-01-17 09:17

    Consider putting your HTTP Request under the Synchronizing Timer - this way you'll be sure your requests are kicked off at exactly the same moment.

    Also 4000 threads is quite a "heavy" load so I would suggest following recommendations from the 9 Easy Solutions for a JMeter Load Test “Out of Memory” Failure guide to get the most performance from your JMeter instance(s).

提交回复
热议问题