I am a user of hbase-0.98.18-hadoop2, when I try to create a table:
create 'MOBTable', {NAME => 'columFamily', VERSION => 1, IS_MOB => true, MOB_THRESHOLD => 102400}
there is an error:
NameError: uninitialized constant IS_MOB
But I have add the following line to hbase-site.xml:
<property>
<name>hfile.format.version</name>
<value>3</value>
</property>
in order to support Hfile version3. However the problem still exist. how can I solve this problem?