[ 
https://issues.apache.org/jira/browse/HBASE-1945?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Jean-Daniel Cryans resolved HBASE-1945.
---------------------------------------

    Resolution: Fixed
      Assignee: Jean-Daniel Cryans

Removed the line in trunk.

> Remove META and ROOT memcache size bandaid 
> -------------------------------------------
>
>                 Key: HBASE-1945
>                 URL: https://issues.apache.org/jira/browse/HBASE-1945
>             Project: Hadoop HBase
>          Issue Type: Improvement
>            Reporter: Jean-Daniel Cryans
>            Assignee: Jean-Daniel Cryans
>             Fix For: 0.21.0
>
>
> In 0.19 I introduced a bandaid to limit the damage done to losing the RS 
> holding META or ROOT by drastically lowering the memstore size. Example: 
> {code}
>   protected HTableDescriptor(final byte [] name, HColumnDescriptor[] 
> families) {
>     this.name = name.clone();
>     this.nameAsString = Bytes.toString(this.name);
>     setMetaFlags(name);
>     for(HColumnDescriptor descriptor : families) {
>       this.families.put(descriptor.getName(), descriptor);
>     }
>     setMemStoreFlushSize(16 * 1024);
>   }
> {code}
> We can remove it from 0.21 since we force sync everything catalog.

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.

Reply via email to