HBASE-1332 regionserver carrying .META. starts sucking all cpu, drives load up - infinite loop?
git-svn-id: https://svn.apache.org/repos/asf/hadoop/hbase/trunk@767063 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
4629b58bd7
commit
c671863d64
|
@ -78,6 +78,8 @@ Release 0.20.0 - Unreleased
|
|||
HBASE-1324 hbase-1234 broke testget2 unit test (and broke the build)
|
||||
HBASE-1321 hbase-1234 broke TestCompaction; fix and reenable
|
||||
HBASE-1330 binary keys broken on trunk (Ryan Rawson via Stack)
|
||||
HBASE-1332 regionserver carrying .META. starts sucking all cpu, drives load
|
||||
up - infinite loop? (Ryan Rawson via Stack)
|
||||
|
||||
IMPROVEMENTS
|
||||
HBASE-1089 Add count of regions on filesystem to master UI; add percentage
|
||||
|
|
|
@ -1436,7 +1436,7 @@ public class Store implements HConstants {
|
|||
search.getKeyLength());
|
||||
if (result < 0) {
|
||||
// Not in file.
|
||||
continue;
|
||||
break;
|
||||
}
|
||||
KeyValue deletedOrExpiredRow = null;
|
||||
KeyValue kv = null;
|
||||
|
|
Loading…
Reference in New Issue