load balancer -- logic

jrmarino

Well-Known Member
#1
It appears that I have successfully configured the load balancer. Between two worker applications, it always picks the same one (there's no load).

So it appears to me that the load balance is NOT round-robin. As long as the first worker can handle the load, the second worker will not get a request.

Is that correct?
 

mistwang

LiteSpeed Staff
#2
That's correct. the load balancer in LSWS is biased toward the first worker app when two works has equal load.
Load is calcuated as <ConnectionsInUse>/<MaxConn> for each backend application.
 
Top