Skip to content

Commit eafd743

Browse files
authored
Merge pull request #185538 from ntrogh/patch-4
Clarified RPS calculation
2 parents c382444 + c5ae0bd commit eafd743

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

articles/load-testing/how-to-high-scale-load.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -26,11 +26,11 @@ In this article, learn how to set up a load test for high-scale load by using Az
2626

2727
## Determine requests per second
2828

29-
The maximum number of *requests per second* (RPS) that Azure Load Testing can generate depends on the application's latency and the number of *virtual users* (VUs).
29+
The maximum number of *requests per second* (RPS) that Azure Load Testing can generate depends on the application's *latency* and the number of *virtual users* (VUs). Application latency is the total time from sending an application request by the test engine to receiving the response.
3030

31-
You can apply the following formula: RPS = (# of VUs) * (1/latency).
31+
You can apply the following formula: RPS = (# of VUs) * (1/latency in seconds).
3232

33-
For example, if application latency is 20 milliseconds (ms), and you're generating a load of 2,000 VUs, you can achieve around 100,000 RPS.
33+
For example, if application latency is 20 milliseconds (0.02 seconds), and you're generating a load of 2,000 VUs, you can achieve around 100,000 RPS (2000 * 1/0.02s).
3434

3535
Apache JMeter only reports requests that made it to the server and back, either successful or not. If Apache JMeter is unable to connect to your application, the actual number of requests per second will be lower than the maximum value. Possible causes might be that the server is too busy to handle the request, or that an TLS/SSL certificate is missing. To diagnose connection problems, you can check the **Errors** chart in the load testing dashboard and [download the load test log files](./how-to-find-download-logs.md).
3636

0 commit comments

Comments
 (0)