What is the significance of little's law in performance test

  • perf-test.com need your contributions to build up a strong repository of performance engineering resources.

anujsingh

Administrator
Aug 14, 2014
14
0
1
38
What is littles law and why is it used for in performance engineering? Is it just used for result validation?
 
Re: What is the significance of little's law in performance

Following article describes the usage and application of littles law in performance engineering :

Little’s law was named after “John Dutton Conant Little” who was an Institute Professor at the Massachusetts Institute of Technology. Little’s law is a generic and simple law which can be applied not only to software systems but to any generic closed system.
Little‘s law states that the average number of requests in the system(closed) is equal to the product of average number of Requests serviced per unit time and the average time each Request stays in the system.

Little‘s law holds valid only under below conditions
- Little‘s law holds good as long as the as the Requests are not created or destroyed within the system.
- It assumes the system to be a stable system (Rate of arrival equals rate of departure)

It applies to any ―black box, which may contain any arbitrary set of components. If the box contains a single resource ( e.g.: single CPU or a single system) or if the box contains a complex system ( e.g.: internet, a city full of systems).
Thus, Little‘s law can be applied to a software systems and can be rephrased as - The average number of users in a queuing system N is equal to the average throughput of system X, multiplied by the average response time of system R.
Numarically,
N = R * X
Where,
N = average number of users in a system
X = average throughput or departure rate of users
R = average time spent in the system or response time


Modifying above stated law for performance engineering and adding think time (TT)
N = (R + TT)* X

Uses of Little’s law in performance engineering and testing
1. Used for designing the test (Modelling workload) – Littles law can be used while designing the test to achieve a desired throughput and calculate appropriate think times (wait times) to be placed inside test script.
2. Used for validating the correctness of test – Every performance test should be verified for correctness by applying littles law on to the results.


Some practice questions –

Problem 1 : Customers exit from a bank at an avg. rate of 2/min. They spend an average of 10 min in the bank. What is the average number of customers in the bank at any time? Assume a stable system.
Solution : Rate of input customers = X = 2/min
Time to service = R = 10 Min
By littles law : N=R*X
N= Number of customers inside bank = 10 * 2 = 20 Customers!


Problem 2 – Determine Concurrent Users in a performance test based on following data-
A system at processes 1000 Transactions/Hour with an average response time of 5s per transaction. The average Think Time per user is = 10s. What is the number of concurrent users on the system?

Throughput or X = 1000/3600 = 0.27 TPS (Transactions Per Second)
From Littles Law : N = [R + TT] * X

Applying the equation: N = [ 5 + 10 ] * 1000/3600 = 4.16
The above system has approximately 4 concurrent users inside the system at any given point of time.


Problem 3 – How to validate software Performance Test Results:
Below details were collected during a test for constant load, Predict if the test was correctly executed or not?
Peak User Concurrency = 400
Average Transactional Response Time = 10s
Average User Think Time = 10s
Peak Transactional Throughput ( as recorded by the tool) = 10 TPS
Solution: Try applying littles law to the above results
N = [R + TT] * X
Solving right hand side = [10 + 10] * 10 = 200 Users

This is not equal to left hand side. Hence it can be predicted that something went terribly wrong with this test.


Please share your comments!!