Load Balancing Algorithm
Round Robin - Rotation fashion
Weighted Round Robin - It is similar to round robin when server are of different capacities.
IP Hash Algorithm - The server have almost equal capacity & hash function(Input is source IP). It is used for random or unbiased distribution of requests to the nodes.
Source IP Hash - It combines the server & client's source & destination's IP addresses to produce hash key.
Least connection algorithm - Clients requests are distributed to application server with least number of active connections at time client request is received.
Least response time - Request is distributed based on server which has least response time.
Comments
Post a Comment