HBASE-1143 region count erratic in master UI

(kill server hosting root or meta and see how count goes awry).... 
            make sure you have a bunch of reions in there


git-svn-id: https://svn.apache.org/repos/asf/hadoop/hbase/trunk@781527 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Jean-Daniel Cryans 2009-06-03 20:01:12 +00:00
parent 42af3c756c
commit d6f7ccf4bf
2 changed files with 4 additions and 0 deletions

View File

@ -305,6 +305,9 @@ Release 0.20.0 - Unreleased
HBASE-1448 Add a node in ZK to tell all masters to shutdown
HBASE-1478 Remove hbase master options from shell (Nitay Joffe via Stack)
HBASE-1462 hclient still seems to depend on master
HBASE-1143 region count erratic in master UI
(kill server hosting root or meta and see how count goes awry)....
make sure you have a bunch of reions in there
OPTIMIZATIONS
HBASE-1412 Change values for delete column and column family in KeyValue

View File

@ -118,6 +118,7 @@ public class HTableDescriptor implements WritableComparable<HTableDescriptor>, I
for(HColumnDescriptor descriptor : families) {
this.families.put(descriptor.getName(), descriptor);
}
setMemcacheFlushSize(16 * 1024);
}
/**