mirror of
https://github.com/seaweedfs/seaweedfs.git
synced 2024-01-19 02:48:24 +00:00
Created run HBase on SeaweedFS (markdown)
parent
48b12848f8
commit
d16b7a6d83
18
run-HBase-on-SeaweedFS.md
Normal file
18
run-HBase-on-SeaweedFS.md
Normal file
|
@ -0,0 +1,18 @@
|
|||
# Installation for HBase
|
||||
|
||||
Two steps to run HBase on SeaweedFS
|
||||
1. Copy the seaweedfs-hadoop2-client-x.x.x.jar to `${HBASE_HOME}/lib`
|
||||
1. 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>
|
||||
```
|
Loading…
Reference in a new issue