The requirement states that load balancing decisions must be based on the number of active connections on each pool member. This directly maps to the Least Connections (member) load balancing method.
According to the BIG-IP Administration: Data Plane Configuration documentation:
Least Connections (member) selects the pool member with the fewest active connections at the time of the request.
This method dynamically adapts to real-time traffic patterns and ensures that more heavily loaded pool members receive fewer new connections.
It is especially effective for web servers where connection duration may vary and equal distribution of active sessions is desired.
Why the other options are incorrect:
B. Round RobinDistributes connections sequentially without considering current load or active connections.
C. Ratio (member)Distributes traffic based on static ratios, not real-time connection counts.
D. Ratio (node)Uses predefined ratios at the node level and does not account for active connection counts.
Correct Resolution:
Using Least Connections (member) ensures that new connections are directed to the pool member currently handling the fewest active connections, meeting the stated requirement.
Submit