Installation for HBase
Two steps to run HBase on SeaweedFS
- Copy the seaweedfs-hadoop2-client-x.x.x.jar to
${HBASE_HOME}/lib
- And add the following 2 properties in
${HBASE_HOME}/conf/hbase-site.xml
<configuration>
<property>
<name>hbase.rootdir</name>
<value>seaweedfs://localhost:8888/hbase</value>
</property>
<property>
<name>fs.seaweedfs.impl</name>
<value>seaweed.hdfs.SeaweedFileSystem</value>
</property>
</configuration>
Visit HBase Web UI at http://<hostname>:16010
to confirm that HBase is running on SeaweedFS