Hbase如何在没有hdfs的情况下,部署一个单机版的hbase?

提问者:帅平 问题分类:大数据
Hbase如何在没有hdfs的情况下,部署一个单机版的hbase?
1 个回答
帅的很低调
帅的很低调
可以把存储配置为本地,以下是一个conf示例:
<?xml version="1.0"?>
<?xml-stylesheet type="text/xsl" href="configuration.xsl"?>
<configuration>
  <property>
    <name>hbase.cluster.distributed</name>
    <value>true</value>
  </property>
  <property>
    <name>hbase.rootdir</name>
    <value>/hbase-data</value>
  </property>
  <property>
    <name>hbase.zookeeper.quorum</name>
    <value>localhost:2181</value>
  </property>
</configuration>
发布于:6个月前 (11-27) IP属地:四川省
我来回答