Load Balancing Strategies and their Distributions

April 3, 2021
five minutes.

Results of a simulation to compare four of the most well known load balancer strategies:

  1. Round robin - requests are routed to each of the available servers in turn
  2. Least occupied - requests are routed to the server with least current requests
  3. Random - requests are routed to a randomly selected server
  4. Random 2 - requests are routed to one of two randomly selected servers, where the chosen server has least current requests (see here and here)

The experiment

We keep a record of the number of requests in the system for a single server. The Julia code is here.

The results

The difference in the distributions of the concurrent requests in with the different strategies is clear.

Distribution of concurrent requests under different load balancing strategies. The requests are distributed over 20 servers with average arrival rate of 10 per step at 75% load factor.

Notice how remnants of the input and output distributions are still visible in the round robin strategy. The least occupied and random 2 strategies tend to concentrate the distribution around its average. On the other hand the random strategy seems to spread the distribution still further.

How does the average vary with load factor?

Change in average concurrent requests as load factory varies, keeping number of servers at 20.

All strategies perform progressively worse as load factor increases, as would be expected. However the least occupied and random 2 strategies are noticeably better that the others, even at higher load factors.

And how does it change with number of servers?

Change in average concurrent requests as number of servers varies, keeping load factor constant at 80%.

Clearly the best strategies require a minimum number of servers over which to spread the requests. That number is relatively small (in this example around 10) and very little improvement is observed with additional servers. The others are unaffected by number of servers.

Variance

The spread in concurrent requests will translate to a spread in latencies too. For a distributed systems we are usually interested in maintaining predictable latencies and minimising long-tails, so we want to minimise this spread. It’s visibly clear that least occupied is the best in this case as it has the narrowest distribution. Let’s have a look at the variance for each one, taking round robin as the base.

Comparison of variance of the distribution of concurrent requests under different load balancing strategies, keeping the number of servers at 20.

What is the relationship between number of servers and the variance?

Change in variance under different load balancing strategies as number of servers increases.

We can see that when there is only a single server, all strategies are the same (obviously). Both the round robin and random strategies have little or no effect on the variance, no matter how many servers there are in the cluster. Although bot least occupied and random 2 fare better, the least occupied has a clear advantage here and seems to be able to capitalise on additional servers more effectively.

Shedding

We employ a shedding mechanism to help keep request distributions under control independently of the load balancing strategy. How does this affect the results? Here we apply a simple shedding of requests by disallowing more than 20 concurrent requests per server.

Distribution of concurrent requests under different load balancing strategies, shedding requests above 20 per server.

The mean of the worse strategies has actually gone down, however much more shedding is being done. That means that server throughput (serviced requests) should be lower. On the other hand the average latencies will also be higher due to the higher load on the server.

Conclusion


As an aside, we can also calculate the entropy of the distribution and see (as shown in the graph above) that it has also has decreased for the least occupied and random 2 strategies while it has actually increased for the random one. One interpretation of these results is that the random strategy introduces a little bit of new uncertainty into the system. On the other hand least occupied and random 2 actually remove uncertainty. This is the load balancer equivalent of Maxwell’s demon, applying work to each request in order to reduce its uncertainty.

Of all the strategies round robin and random are disastrous and either do nothing to improve the distribution of requests or actually make it worse. However, the least occupied and random 2 strategies are able to take advantage of multiple servers to not only reduce the mean but also reduce the variance across the cluster.

While the least occupied is slightly better in terms of the spread of requests, the random 2 has some other advantages. Firstly, it’s slightly simpler and therefore faster in practice because only 2 servers are checked for each request rather than all of them. More importantly, it avoids servers which are (re)starting receiving all the load immediately. This is useful when the server needs some time to warmup caches, etc.

Load Balancing Strategies and their Distributions - April 3, 2021 - John Hearn