Revert "HBASE-15120 Undo aggressive load balancer logging at tens of lines per millisecond"

This reverts commit 66da601cdc.
This commit is contained in:
stack 2016-02-04 16:09:52 -08:00
parent 66da601cdc
commit 8061fa4af8
1 changed files with 2 additions and 6 deletions

View File

@ -814,11 +814,9 @@ public abstract class BaseLoadBalancer implements LoadBalancer {
i++;
lowestLocalityServerIndex = serverIndicesSortedByLocality[i];
}
if (LOG.isTraceEnabled()) {
LOG.trace("Lowest locality region server with non zero regions is "
LOG.debug("Lowest locality region server with non zero regions is "
+ servers[lowestLocalityServerIndex].getHostname() + " with locality "
+ localityPerServer[lowestLocalityServerIndex]);
}
return lowestLocalityServerIndex;
}
}
@ -841,11 +839,9 @@ public abstract class BaseLoadBalancer implements LoadBalancer {
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
+ " regions");
}
return regionsPerServer[serverIndex][lowestLocalityRegionIndex];
} else {
return -1;