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

相关推荐
“愿你如星辰如月”1 天前
C++11核心特性全解析
开发语言·c++
三毛人1 天前
php usdt地址生成
开发语言·php
前端之虎陈随易1 天前
基于Go重写的TypeScript 7可以用了
开发语言·golang·typescript
魂梦翩跹如雨1 天前
P10424 [蓝桥杯 2024 省 B] 好数——Java解答
java·蓝桥杯
编程火箭车1 天前
【Java SE 基础学习打卡】20 运算符(下)
java·运算符·编程基础·逻辑运算符·条件判断·三元运算符·关系运算符
cici158741 天前
MATLAB/Simulink单相光伏并网逆变器仿真
开发语言·matlab
Dev7z1 天前
基于MATLAB小波分析的图像增强算法及其仿真实现
开发语言·matlab
m0_598177231 天前
Mysql(2) - DQL-基本查询
java
代码游侠1 天前
学习笔记——栈
开发语言·数据结构·笔记·学习·算法