How to reach the desired Non functional requirements

Viewed 12

im new to perf testing,i have to run some performance tests and have already created the scripts and infra- running distributed testing with gcp Vms

i have been given the the nfrs buti should use minute wise data (transactions done in a minute ) for the load

e.g this are the active users and bets placed per minute,i have minute data for about 2 hrs enter image description here

how can one configure jmeter to the minute-wise data,i did the conversion to get the hourly and then distribute the load concurrently but been told that is incorrect.

1 Answers

Take a look at Constant Throughput Timer it allows specifying the desired load in terms of number of requests per minute

enter image description here

Be informed of the following:

  1. Constant Throughput Timer can only pause the threads in order to limit JMeter's Samplers execution rate to the desired number of requests per minute
  2. Despite word Constant it its name it doesn't have to be "Constant", you can put a JMeter Variable or Property into the "Target Throughput" field and amend it according to your workload model as required in the runtime.
Related