zoukankan      html  css  js  c++  java
  • Hadoop 管理工具HUE配置-HBase配置

    1 前言

    首先要陪只好HBase,可以参见http://www.cnblogs.com/liuchangchun/p/4096891.html,完全分布式类似

    2 HBase配置

    2.1 HUE 配置文件设置,找到hbase标签,配置如下

    # Comma-separated list of HBase Thrift servers for clusters in the format of '(name|host:port)'.
      # Use full hostname with security.
      # If using Kerberos we assume GSSAPI SASL, not PLAIN.
      hbase_clusters=(Cluster1|spark-1421-0002:9090)
    
      # HBase configuration directory, where hbase-site.xml is located.
      hbase_conf_dir=/home/hadoop/software/cloud/hbase-1.0.0/conf
    
      # Hard limit of rows or columns per row fetched before truncating.
      ## truncate_limit = 500
    
      # 'buffered' is the default of the HBase Thrift Server and supports security.
      # 'framed' can be used to chunk up responses,
      # which is useful when used in conjunction with the nonblocking server in Thrift.
      thrift_transport=buffered

    2.2 HBase配置文件修改,需要在hbase-site.xml中增加一些东西

              <property>
                  <name>hbase.thrift.support.proxyuser</name>
                  <value>true</value>
              </property>
    
              <property>
                  <name>hbase.regionserver.thrift.http</name>
                  <value>true</value>
              </property>

    为什么要添加这些东西,因为HUE要访问HBase的thrift服务,参见:http://gethue.com/hbase-browsing-with-doas-impersonation-and-kerberos/

    2.3 需要启动HBase的thrift服务

    hbase-daemon.sh start thrift2
  • 相关阅读:
    CF 526F Max Mex(倍增求LCA+线段树路径合并)
    CoderForces Round526 (A~E)题解
    牛客OI周赛4-提高组 A K小生成树(kmst)
    Codeforces 1072 C
    Codeforces 1053 C
    牛客国庆集训派对Day3 B Tree
    牛客国庆集训派对Day3 I Metropolis
    牛客国庆集训派对Day3 A Knight
    牛客国庆集训派对Day3 G Stones
    Codeforces 1053 B
  • 原文地址:https://www.cnblogs.com/liuchangchun/p/4769730.html
Copyright © 2011-2022 走看看