What is the relationship between the 99% Line and throughput in Jmeter's Aggregate Report

Om Shreenidhi

I ran a jmeter test case where I found :-

Samples - 26133
99% Line to be - 2061ms
ThroughPut - 43.6/s

My question is how can the throughput be 43.6 requests per second when then 99% Line is showing at 2061ms. From my understanding that means 99% of the samples took NO MORE THAN this time. The 1% remaining samples took at least as long as this. So Shouldn't the throughput be less than 1 request per second? How is it able to serve 46 requests per second when 99% itself take 2 seconds to respond?

Dmitri T
  • 99% is response time
  • Throughput is the number of requests for the test duration

Given the number of samplers and the throughput my expectation is that you ran your test for 10 minutes.

If you would execute your test with 1 user having response time of 2 seconds for 10 minutes you would get 300 samples. Looking at the numbers I can assume that you had something like 87 users.

And this 87 users (or whatever is your number) is a key point because throughput indicates concurrency

  • 1 user which executes 1 request each 2 seconds - throughput will be 0.5 hits per second
  • 2 users which execute 1 request each 2 seconds - throughput will be 1 hit per second
  • 4 users which execute 1 request each 2 seconds - throughput will be 2 hits per second
  • etc.

More information:

Collected from the Internet

Please contact [email protected] to delete if infringement.

edited at
0

Comments

0 comments
Login to comment

Related

What's the relationship between binutils and gcc?

What is the difference between latency, bandwidth and throughput?

What's the relationship between profunctors and arrows?

What's the relationship between thread and queue in GCD?

What's the UML difference between Entity and Aggregate?

What's the difference or relationship between Type and TypeInfo?

What's the relationship between an SVM and hinge loss?

What's the relationship/difference between Visibility and Ordering?

what is different between summary report and aggregate report?

What's the relationship between projects and applications in spinnaker?

What's the relationship between Dalvik and Zygote process?

What's the relationship between deployment and ConfigMap?

How to calculate samples of JMeter aggregate report

What's the relationship between Style Transfer and GAN?

What's the relationship between client and workspace in perforce?

What's the relationship between ssh console and bash?

What's the difference between "requested global load throughput" and "global load throughput" in CUDA

What's the relationship between SOCKS and socket?

jmeter -How to set max value in Aggregate report

What's the relationship between 'BeautifulSoup' and 'lxml'?

What's the relationship between the NIC's clock and PCIe 2.0 bus?

What's the relationship between X and VNC?

What does 90th, 95th & 99th pct matrices means in dashboard report of jmeter?

Throughput calculation in jmeter with respect to aggregate report

What is the meaning of 99th percentile latency and throughput

What's the relationship between time complexity and complement?

What's the relationship between AT commands and device vendor's C API?

What's the relationship between kernel object and WaitHandle?

What is the reason behind to fail aggregate report but view results in tree is all pass in jmeter?

TOP Ranking

  1. 1

    Failed to listen on localhost:8000 (reason: Cannot assign requested address)

  2. 2

    How to import an asset in swift using Bundle.main.path() in a react-native native module

  3. 3

    Loopback Error: connect ECONNREFUSED 127.0.0.1:3306 (MAMP)

  4. 4

    pump.io port in URL

  5. 5

    Spring Boot JPA PostgreSQL Web App - Internal Authentication Error

  6. 6

    BigQuery - concatenate ignoring NULL

  7. 7

    ngClass error (Can't bind ngClass since it isn't a known property of div) in Angular 11.0.3

  8. 8

    Do Idle Snowflake Connections Use Cloud Services Credits?

  9. 9

    maven-jaxb2-plugin cannot generate classes due to two declarations cause a collision in ObjectFactory class

  10. 10

    Compiler error CS0246 (type or namespace not found) on using Ninject in ASP.NET vNext

  11. 11

    Can't pre-populate phone number and message body in SMS link on iPhones when SMS app is not running in the background

  12. 12

    Generate random UUIDv4 with Elm

  13. 13

    Jquery different data trapped from direct mousedown event and simulation via $(this).trigger('mousedown');

  14. 14

    Is it possible to Redo commits removed by GitHub Desktop's Undo on a Mac?

  15. 15

    flutter: dropdown item programmatically unselect problem

  16. 16

    Change dd-mm-yyyy date format of dataframe date column to yyyy-mm-dd

  17. 17

    EXCEL: Find sum of values in one column with criteria from other column

  18. 18

    Pandas - check if dataframe has negative value in any column

  19. 19

    How to use merge windows unallocated space into Ubuntu using GParted?

  20. 20

    Make a B+ Tree concurrent thread safe

  21. 21

    ggplotly no applicable method for 'plotly_build' applied to an object of class "NULL" if statements

HotTag

Archive