HBASE-1504 Remove left-over debug from 1304 commit
git-svn-id: https://svn.apache.org/repos/asf/hadoop/hbase/trunk@782877 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
645553c0db
commit
d6ec5ed8a2
|
@ -168,6 +168,7 @@ Release 0.20.0 - Unreleased
|
|||
HBASE-1486 BLOCKCACHE always on even when disabled (Lars George via Stack)
|
||||
HBASE-1491 ZooKeeper errors: "Client has seen zxid 0xe our last zxid is 0xd"
|
||||
HBASE-1499 Fix javadoc warnings after HBASE-1304 commit (Lars George via Stack)
|
||||
HBASE-1504 Remove left-over debug from 1304 commit
|
||||
|
||||
IMPROVEMENTS
|
||||
HBASE-1089 Add count of regions on filesystem to master UI; add percentage
|
||||
|
|
|
@ -1276,9 +1276,6 @@ class RegionManager implements HConstants {
|
|||
* @param returnMsgs
|
||||
*/
|
||||
public void applyActions(HServerInfo serverInfo, ArrayList<HMsg> returnMsgs) {
|
||||
if (LOG.isDebugEnabled()) {
|
||||
LOG.debug("Applying operation in tasklists to region");
|
||||
}
|
||||
applyActions(serverInfo, returnMsgs, this.regionsToCompact,
|
||||
HMsg.Type.MSG_REGION_COMPACT);
|
||||
applyActions(serverInfo, returnMsgs, this.regionsToSplit,
|
||||
|
|
|
@ -475,8 +475,6 @@ class ServerManager implements HConstants {
|
|||
|
||||
// Should we tell it close regions because its overloaded? If its
|
||||
// currently opening regions, leave it alone till all are open.
|
||||
// LOG.debug("Process all wells: " + serverInfo + " openingCount: " + openingCount +
|
||||
// ", nobalancingCount: " + nobalancingCount);
|
||||
if ((openingCount < this.nobalancingCount)) {
|
||||
this.master.regionManager.assignRegions(serverInfo, mostLoadedRegions,
|
||||
returnMsgs);
|
||||
|
|
|
@ -1020,7 +1020,6 @@ public class HRegion implements HConstants { // , Writable{
|
|||
Store store = getStore(family);
|
||||
KeyValue kv = new KeyValue(row, HConstants.LATEST_TIMESTAMP);
|
||||
// get the closest key. (HStore.getRowKeyAtOrBefore can return null)
|
||||
LOG.debug("getClosestRowBefore looking for: " + Bytes.toStringBinary(row));
|
||||
key = store.getRowKeyAtOrBefore(kv);
|
||||
if (key == null) {
|
||||
return null;
|
||||
|
@ -2330,4 +2329,4 @@ public class HRegion implements HConstants { // , Writable{
|
|||
// out.writeInt(store.getNumberOfstorefiles());
|
||||
// }
|
||||
// }
|
||||
}
|
||||
}
|
||||
|
|
|
@ -1876,7 +1876,6 @@ public class HRegionServer implements HConstants, HRegionInterface,
|
|||
break;
|
||||
}
|
||||
}
|
||||
LOG.debug("Result[]next time: " + (System.currentTimeMillis()-start) + " (ms)");
|
||||
return results.toArray(new Result[0]);
|
||||
} catch (Throwable t) {
|
||||
throw convertThrowableToIOE(cleanup(t));
|
||||
|
|
Loading…
Reference in New Issue