欢迎投稿

今日深度:

Hbase入门,

Hbase入门,


一、安装

下载并解压,
hbase-env.sh环境变量配置JAVA_HOME

二、案例

1、伪分布模式
hbase-site.xml配置
参考官网

<configuration>
  <property>
    <name>hbase.rootdir</name>
    <value>hdfs://master:8020/hbase</value>
  </property>
  <property>
    <name>hbase.cluster.distributed</name>
    <value>true</value>
  </property>
  <property>
    <name>hbase.zookeeper.quorum</name>
    <value>master</value>
  </property>
</configuration>

启动Hbase

bin/start-hbase.sh

www.htsjk.Com true http://www.htsjk.com/hbase/42265.html NewsArticle Hbase入门, 一、安装 下载并解压, hbase-env.sh环境变量配置JAVA_HOME 二、案例 1、伪分布模式 hbase-site.xml配置 参考官网 configuration property namehbase.rootdir/name valuehdfs://master:8020/hbase/value /pro...
相关文章
    暂无相关文章
评论暂时关闭