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