jmeter定时器-Constant Throughput Timer

jmeter定时器-Constant Throughput Timer

说明

  1. Target Throughput(minute):每分钟吞吐量
  2. Calculate Ghtrouhput based on:吞吐量基于下面几种方式计算
    (1)this thread only:基于当前线程。如Number of Thread=5.则TPS=5*2=10
    (2)all active threads:所有活跃的线程
    (3)all active threads in current thread group:当前线程组所有活跃的线程
    (4)all active thread(shared):所有活跃的线程(共享)
    (5)all active threads in current thread group(shared):当前线程组中的所有活跃的线程(共享)

测试场景

新增Constant Throughput Timer

this Thread only


执行结果
结论

选择this thread only时,TPS=目标吞吐量*线程数

all active threads


执行结果
结论

选择all active threads 时,TPS=目标吞吐量

all active threads in current thread group


执行结果


结论

选择all active threads in current thread group时,TPS=目标吞吐量

all active threads(shared)


执行结果


结论

选择all active threads(shared)时,TPS=目标吞吐量/所有活跃线程=2/2=1

all active threads in current thread group(shared)


执行结果


结论

选择all active threads(shared)时,TPS=目标吞吐量/单线程组下所有活动的线程=2/1=1

相关推荐
这里是彪彪2 分钟前
Java中的volatile关键字的作用
java·开发语言
Dxy12393102166 分钟前
Python的zip用法详解
开发语言·python
逑之7 分钟前
C语言笔记3:分支与循环
c语言·开发语言·笔记
独自破碎E12 分钟前
【归并】数组中的逆序对
java·数据结构·算法
范什么特西14 分钟前
打开idea项目
java
黎雁·泠崖15 分钟前
Java入门从零起步:CMD操作+JDK环境搭建+第一个Java程序
java·开发语言
f***241115 分钟前
MATLAB高效算法优化实战指南
开发语言·算法·matlab
我的golang之路果然有问题16 分钟前
python中 unicorn 热重启问题和 debug 的 json
java·服务器·前端·python·json
智算菩萨17 分钟前
【Python自然语言处理】实战项目:词向量表示完整实现指南
开发语言·python·自然语言处理
码农小卡拉19 分钟前
深度解析 Spring Boot 启动运行机制
java·spring boot·后端