
从“线程属性”配置来看,我认为QPS是750/50=15。但是当我运行测试时,经过的时间是'00:01:01‘。这是否意味着真正的QPS是750/61=12?
发布于 2018-05-21 08:28:07
JMeter的作用如下:
QPS取决于许多因素,主要有:
因此,QPS并不是您可以有效或精确地控制的东西,这些选项包括:
- Add more "Loops" to your [Thread Group](http://jmeter.apache.org/usermanual/component_reference.html#Thread_Group) so threads could re-execute samplers maintaining 750 users concurrency as looking into your Test Plan and execution time it appears you have around 13 simultaneous users only
- Add more virtual users
发布于 2018-05-21 08:05:29
50秒是爬升周期,这意味着50秒后将执行750个线程,运行时间受爬升周期的影响,但它只影响测试的启动时间。
在您的案例中,循环计数是1,但是如果测试中有一长串缓慢的HTTP请求或复杂的循环控制器或其他测试片段,那么测试可以持续几个小时。
https://stackoverflow.com/questions/50444367
复制相似问题