HBASE-1522
git-svn-id: https://svn.apache.org/repos/asf/hadoop/hbase/trunk@784657 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
0f67b602c7
commit
3f02e3be7a
|
@ -176,6 +176,7 @@ Release 0.20.0 - Unreleased
|
|||
HBASE-1516 Investigate if StoreScanner will not return the next row if
|
||||
earlied-out of previous row (Jon Gray)
|
||||
HBASE-1520 StoreFileScanner catches and ignore IOExceptions from HFile
|
||||
HBASE-1522 We delete splits before their time occasionally
|
||||
|
||||
IMPROVEMENTS
|
||||
HBASE-1089 Add count of regions on filesystem to master UI; add percentage
|
||||
|
|
|
@ -208,7 +208,7 @@ class CompactSplitThread extends Thread implements HConstants {
|
|||
put.add(CATALOG_FAMILY, SPLITA_QUALIFIER,
|
||||
Writables.getBytes(newRegions[0].getRegionInfo()));
|
||||
put.add(CATALOG_FAMILY, SPLITB_QUALIFIER,
|
||||
Writables.getBytes(newRegions[0].getRegionInfo()));
|
||||
Writables.getBytes(newRegions[1].getRegionInfo()));
|
||||
t.put(put);
|
||||
|
||||
// Add new regions to META
|
||||
|
|
Loading…
Reference in New Issue