HBASE-1424 have shell print regioninfo and location on first load if DEBUG enabled
git-svn-id: https://svn.apache.org/repos/asf/hadoop/hbase/trunk@774878 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
5ecdfc1ee8
commit
5de2553738
|
@ -244,6 +244,8 @@ Release 0.20.0 - Unreleased
|
|||
HBASE-1413 Fall back to filesystem block size default if HLog blocksize is
|
||||
not specified
|
||||
HBASE-1417 Cleanup disorientating RPC message
|
||||
HBASE-1424 have shell print regioninfo and location on first load if
|
||||
DEBUG enabled
|
||||
|
||||
OPTIMIZATIONS
|
||||
HBASE-1412 Change values for delete column and column family in KeyValue
|
||||
|
|
|
@ -592,6 +592,7 @@ public class HConnectionManager implements HConstants {
|
|||
// instantiate the location
|
||||
location = new HRegionLocation(regionInfo,
|
||||
new HServerAddress(serverAddress));
|
||||
LOG.debug(location);
|
||||
cacheLocation(tableName, location);
|
||||
return location;
|
||||
} catch (TableNotFoundException e) {
|
||||
|
@ -1059,4 +1060,4 @@ public class HConnectionManager implements HConstants {
|
|||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue