Description | The SASP weight converted to the local load balancer
weight range. The load balancer's weight range is
implementation dependent, as is the formula used to
convert the weight.
The following formula is an example weight conversion
that could be used by the load balancer:
answer => slbSaspMemberConvertedWeight
maxLbWgt => slbSaspMaxLbWeight
mbrSaspWgt => slbSaspMemberSaspWeight
answer = ((mbrSaspWgt * maxLbWgt) / 65535) + 1
Note: There are two edge cases that need to be
considered; when the mbrSaspWgt is 0 and 65535. If the
mbrSaspWgt is 0, then the converted weight must also be
0 (the result of the calculation would be 1). If the
mbrSaspWgt is 65535, then the converted weight must be
the load balancers maximum weight (the result of the
calculation would be the load balancers maxiumum weight
plus 1). |