cassandra developer
cassandra developer

Reputation: 21

Hbase-database configuration

I'm new to Hbase.I have created a table using hbase shell.By default it's storing on /tmp folder. I want to change the storage location. where I should change the configuration. Thanks in advance..

Upvotes: 0

Views: 364

Answers (3)

Tariq
Tariq

Reputation: 34184

you can specify some hdfs directory as the value for hbase.rootdir if you are trying to run hbase in pseudo distributed or fully distributed mode

Upvotes: 0

Infinity
Infinity

Reputation: 683

Inside hbase folder there is config folder go to that there you will find a file name hbase-site.xml open it

  <property>
    <name>hbase.rootdir</name>
    <value>home/username/hbase</value> ***<----- here you can specify the folder as storage place***
    <description>The directory shared by RegionServers.
    </description>
  </property>

For more options check the link below

http://hbase.apache.org/book/config.files.html

Upvotes: 1

David
David

Reputation: 3261

all HBase configuration is in ${HBASE_HOME}/conf/hbase-site.xml

Look in the hbase-default.xml file for hints on what you can modify. Last I checked, that was in ${HBASE_HOME}/src/main/resources/

Upvotes: 0

Related Questions