Revert "HBASE-18164 Fast locality computation in balancer - addendum handles NaN"

This reverts commit 35693f0583.

early commit missed some review feedback.
This commit is contained in:
Sean Busbey 2017-06-27 13:29:22 -05:00
parent 293cb87d52
commit 141482512a
1 changed files with 3 additions and 4 deletions

View File

@ -1286,9 +1286,8 @@ public class StochasticLoadBalancer extends BaseLoadBalancer {
}
// We normalize locality to be a score between 0 and 1.0 representing how good it
// is compared to how good it could be. If bestLocality is 0, assume locality is 100
// (and the cost is 0)
locality = bestLocality == 0 ? 1 : locality / bestLocality;
// is compared to how good it could be
locality /= bestLocality;
}
@Override
@ -1299,7 +1298,7 @@ public class StochasticLoadBalancer extends BaseLoadBalancer {
return;
}
double localityDelta = getWeightedLocality(region, newEntity) - getWeightedLocality(region, oldEntity);
double normalizedDelta = bestLocality == 0 ? 0.0 : localityDelta / bestLocality;
double normalizedDelta = localityDelta / bestLocality;
locality += normalizedDelta;
}