Random Balancing
Random load balancing is one of the simplest strategies: each incoming request is directed to a randomly chosen target. While it doesn’t account for load or performance differences among backends, it can be surprisingly effective in distributing traffic in environments where the backends have similar capabilities or where simplicity is paramount.
How It Works
-
Random Selection Each time a request arrives, the gateway picks one of the available targets at random.
-
Even Distribution Over Time With enough requests, traffic typically evens out across targets, though short-term fluctuations can occur.
-
Low Overhead Random load balancing requires minimal overhead since no real-time tracking of connection counts or performance metrics is necessary.
Example: Creating an Upstream with Random Load Balancing
Below is an example of how to create an Upstream using the random algorithm. The configuration includes two targets, each connecting to different services.