我下载了hbase 1.2.2并尝试在独立模式下在我的macbook上运行它,当我执行start-hbase.sh时它运行得很好。但现在我正在尝试设置rootdir以永久存储我的数据。有没有办法使用相对路径来设置hbase的rootdir?我在hbase-site.xml中尝试了这个但是这不起作用:(
<configuration>
<property>
<name>hbase.rootdir</name>
<value>file:///./Data/hbase</value>
</property>
<property>
<name>hbase.zookeeper.property.dataDir</name>
<value>./Data/zookeeper</value>
</property>
</configuration>
答案 0 :(得分:1)
更改强>
<value>file:///./Data/hbase</value>
要强>
<value>./Data/hbase</value>