HBASE-1536
git-svn-id: https://svn.apache.org/repos/asf/hadoop/hbase/trunk@785835 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
dd87f8d973
commit
94aa7d7247
|
@ -196,6 +196,8 @@ Release 0.20.0 - Unreleased
|
|||
HBASE-1447 Take last version of the hbase-1249 design doc. and make
|
||||
documentation out of it
|
||||
HBASE-1206 Scanner spins when there are concurrent inserts to column family
|
||||
HBASE-1536 Controlled crash of regionserver not hosting meta/root leaves master
|
||||
in spinning state, regions not reassigned
|
||||
|
||||
IMPROVEMENTS
|
||||
HBASE-1089 Add count of regions on filesystem to master UI; add percentage
|
||||
|
|
|
@ -249,7 +249,7 @@ class ProcessServerShutdown extends RegionServerOperation {
|
|||
Scan scan = new Scan();
|
||||
scan.addFamily(CATALOG_FAMILY);
|
||||
long scannerId = server.openScanner(
|
||||
HRegionInfo.ROOT_REGIONINFO.getRegionName(), scan);
|
||||
m.getRegionName(), scan);
|
||||
scanMetaRegion(server, scannerId, m.getRegionName());
|
||||
return true;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue