top of page

Type Of Load Balancers Algorithms

Load balancing can be generally divided into two main types: static and dynamic, each with different methods and applications.


Static Load Balancing Algorithms

Static algorithms spread the workload using fixed rules, without checking the system's current status. They are usually easier and quicker to use but might not handle changes in workload very well.


  1. Round Robin (RR): This method sends requests to each server one after another in a fixed cycle. Every server gets the same number of requests in turn.

    Advantage:

    Simple and easy to set up. Effective when all servers have similar performance and capacity.

    Disadvantage:

    It doesn't take into account how busy each server is or their specific capabilities.

    Some servers might get overloaded if the incoming requests vary significantly in size or complexity.



Load Balancer

2. Weighted Round Robin (WRR): This is an improved version of the Round Robin method where each server is given a weight based on its capacity. Servers with higher weights get more requests than those with lower weights.


Advantage:

Can effectively manage servers with different performance levels, ensuring more powerful servers handle a larger share of the workload.

Disadvantage:

The weights are fixed and do not change based on real-time conditions. This means the system can't adjust if a server becomes overloaded or if its capacity changes.


Load Balancer

3. IP Hashing: This method uses the client's IP address to decide which server will handle the request. This means that the same client will always be directed to the same server every time they make a request.


Advantage:

Session Persistence: It ensures that each client consistently interacts with the same server. This is useful for applications where maintaining a continuous session with the same server is important, like in online shopping carts or personalized user experiences.

Disadvantage:

Not Adaptive: It doesn't adjust based on the current load or performance of the servers. If one server ends up with many clients, it can become overloaded while other servers might be underutilized.

Potential for Uneven Load Distribution: If many clients happen to have IP addresses that hash to the same server, that server can become overloaded, leading to inefficiencies and slower response times.


Load Balancer

4. Sticky Round Robin : This method combines elements of both "sticky sessions" and the "Round Robin" technique. It initially distributes requests in a round-robin manner but ensures that once a client is assigned to a server, all subsequent requests from that client go to the same server.


Advantages:

Session Persistence: Ensures that each client continues to interact with the same server, which is useful for maintaining continuous sessions (e.g., shopping carts, logged-in user sessions).

Balanced Distribution: Initially distributes the load evenly across servers, preventing any single server from being overwhelmed at the start.

Disadvantages:

Potential Imbalance Over Time: If certain clients are more active than others, their assigned servers might become overloaded, while other servers might remain underutilized.

Less Flexibility: Once a client is tied to a server, the system doesn't easily adapt to changing conditions or workloads, which can affect overall efficiency.


Load Balancer


Dynamic Load Balancing Algorithms:

These methods spread the workload across servers by constantly monitoring real-time conditions. They adjust to changes in the system to make sure resources are used efficiently and performance is optimized. Essentially, they make decisions based on the latest data to keep everything running smoothly.


1. Least Connections (LC): This method directs new requests to the server that currently has the fewest active connections.


Advantage:

Better Load Distribution: It adjusts more effectively to varying workloads because it takes into account the number of connections each server is handling. This helps prevent any single server from getting overwhelmed when some servers are already busy.

Disadvantage:

Ignores Response Time and Processing Power: It doesn't consider how quickly a server responds to requests or how powerful it is. So, a server that’s slow or less capable might end up with many requests simply because it had fewer connections at the moment.


Load Balancer

2. Least Time(LT): This method directs new requests to the server that is estimated to complete the tasks the quickest. It considers both the number of active connections and the server’s response time.


Advantages:


Efficient Workload Distribution: By considering how quickly each server can handle requests, it helps ensure that requests are processed as fast as possible.

Adaptive: It adjusts to current conditions, sending requests to servers that can handle them most efficiently at that moment.

Disadvantages:

Complexity: It requires constant monitoring and calculation of server response times, making it more complex to implement and manage.

Variable Accuracy: The estimation of the least time can sometimes be inaccurate due to sudden changes in server performance or network conditions.


Load Balancer


1 Comment

Rated 0 out of 5 stars.
No ratings yet

Add a rating
Guest
Jul 25
Rated 5 out of 5 stars.
Like
bottom of page