HBASE-11339 integrated updates made to the MOB Handbook DOCX file

This commit is contained in:
Misty Stanley-Jones 2014-10-02 13:07:12 +10:00
parent 7da41643ee
commit b72eb7f92e
1 changed files with 3 additions and 3 deletions

View File

@ -72,7 +72,7 @@ hbase> alter 't1', {NAME => 'f1', IS_MOB => true, MOB_THRESHOLD => 102400}
<title>Configure a Column for MOB Using the API</title> <title>Configure a Column for MOB Using the API</title>
<programlisting language="java"> <programlisting language="java">
... ...
HColumnDescriptor hcd = new HColumnDescriptor("f"); HColumnDescriptor hcd = new HColumnDescriptor(“f”);
hcd.setMobEnabled(true); hcd.setMobEnabled(true);
... ...
hcd.setMobThreshold(102400L); hcd.setMobThreshold(102400L);
@ -123,7 +123,7 @@ hcd.setMobThreshold(102400L);
<name>hbase.mob.sweep.tool.compaction.ratio</name> <name>hbase.mob.sweep.tool.compaction.ratio</name>
<value>0.5f</value> <value>0.5f</value>
<description> <description>
If there're too many cells deleted in a mob file, it's regarded If there are too many cells deleted in a mob file, it's regarded
as an invalid file and needs to be merged. as an invalid file and needs to be merged.
If existingCellsSize/mobFileSize is less than ratio, it's regarded If existingCellsSize/mobFileSize is less than ratio, it's regarded
as an invalid file. The default value is 0.5f. as an invalid file. The default value is 0.5f.