Revert "HBASE-15120 Undo aggressive load balancer logging at tens of lines per millisecond"
This reverts commit c177cfed41
.
This commit is contained in:
parent
c177cfed41
commit
337f483077
|
@ -816,11 +816,9 @@ public abstract class BaseLoadBalancer implements LoadBalancer {
|
||||||
i++;
|
i++;
|
||||||
lowestLocalityServerIndex = serverIndicesSortedByLocality[i];
|
lowestLocalityServerIndex = serverIndicesSortedByLocality[i];
|
||||||
}
|
}
|
||||||
if (LOG.isTraceEnabled()) {
|
LOG.debug("Lowest locality region server with non zero regions is "
|
||||||
LOG.trace("Lowest locality region server with non zero regions is "
|
|
||||||
+ servers[lowestLocalityServerIndex].getHostname() + " with locality "
|
+ servers[lowestLocalityServerIndex].getHostname() + " with locality "
|
||||||
+ localityPerServer[lowestLocalityServerIndex]);
|
+ localityPerServer[lowestLocalityServerIndex]);
|
||||||
}
|
|
||||||
return lowestLocalityServerIndex;
|
return lowestLocalityServerIndex;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -843,11 +841,9 @@ public abstract class BaseLoadBalancer implements LoadBalancer {
|
||||||
lowestLocalityRegionIndex = j;
|
lowestLocalityRegionIndex = j;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
if (LOG.isTraceEnabled()) {
|
LOG.debug(" Lowest locality region index is " + lowestLocalityRegionIndex
|
||||||
LOG.debug(" Lowest locality region index is " + lowestLocalityRegionIndex
|
|
||||||
+ " and its region server contains " + regionsPerServer[serverIndex].length
|
+ " and its region server contains " + regionsPerServer[serverIndex].length
|
||||||
+ " regions");
|
+ " regions");
|
||||||
}
|
|
||||||
return regionsPerServer[serverIndex][lowestLocalityRegionIndex];
|
return regionsPerServer[serverIndex][lowestLocalityRegionIndex];
|
||||||
} else {
|
} else {
|
||||||
return -1;
|
return -1;
|
||||||
|
|
Loading…
Reference in New Issue