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

相关推荐
不二狗5 分钟前
每日算法 -【Swift 算法】Two Sum 问题:从暴力解法到最优解法的演进
开发语言·算法·swift
炯哈哈13 分钟前
【上位机——WPF】Window标签常用属性
开发语言·c#·wpf·上位机
小白学大数据19 分钟前
Python爬虫如何应对网站的反爬加密策略?
开发语言·爬虫·python
Akiiiira20 分钟前
【数据结构】队列
java·开发语言·数据结构
程序媛学姐25 分钟前
Java级联操作:CascadeType的选择与最佳实践
java·开发语言
不知几秋40 分钟前
Maven
java·数据库·maven
LetsonH1 小时前
Python工具链UV整合环境管理
开发语言·python·uv
jackson凌1 小时前
【Java学习笔记】equals方法
java·笔记·学习
zm2 小时前
UDP 多点通信
开发语言·php
TinpeaV2 小时前
websocket入门详解
java·网络·spring boot·websocket·网络协议