Max Luwang
Max Luwang

Reputation: 79

Is it possible to connect HADOOP from non HDFS filesystem HBASE?

Configuration of hbase-site.xml @HBase

<property>
    <name>hbase.rootdir</name>
    <value>file:///D:/LocalData/HBASEDATA/</value>
</property>

Upvotes: 0

Views: 55

Answers (1)

akshat thakar
akshat thakar

Reputation: 1527

HBase use Hadoop to leverage distributed file system and robust fault tolerant nature. If you are planning for non HDFS filesystem for Hbase, it will still work. You would not be able to get above advantages of HDFS and then there is no point in connecting to Hadoop, if you do not want to use HDFS.

I would suggest to use HDFS filesystem, if your data spans more than single machine. You can then set above property with hdfs path.

hdfs://nn:port/hbase

Upvotes: 1

Related Questions