zoukankan      html  css  js  c++  java
  • 配置文件

     <property>
        <name>hbase.rootdir</name>
        <value>hdfs://t1.dky.com:54310/hbase</value>
        <description>The directory shared by RegionServers.</description>
      </property>
      <property>
        <name>hbase.cluster.distributed</name>
        <value>true</value>
        <description>The mode the cluster will be in. Possible values are
          false: standalone and pseudo-distributed setups with managed Zookeeper
          true: fully-distributed with unmanaged Zookeeper Quorum (see hbase-env.sh)
        </description>
      </property>
      <property>
        <name>dfs.support.append</name>
        <value>true</value>
      </property>
    
       server.1=n1:2888:3888
       server.2=n2:2888:3888
       server.3=n3:2888:3888
    
    export Hadoop_HOME=/usr/hadoop
    export HBASE_HEAPSIZE=128  
    export HBASE_MANAGES_ZK=false  
    
     <property>
        <name>hbase.master</name>
        <value>t1.dky.com:60000</value>
     </property>
     <property>  
       <name>hbase.zookeeper.property.dataDir</name>  
       <value>//usr/hadoop/zookeeper/zookeeper-data</value>  
       <description>Property from ZooKeeper's config zoo.cfg. The directory where the snapshot is stored.</description>  
     </property>  
     <property>  
       <name>hbase.zookeeper.quorum</name>  
       <value>n1.dky.com,n2.dky.com,n3.dky.com</value>  
       <description>The directory shared by RegionServers.</description>  
     </property>  
  • 相关阅读:
    FusionCharts 2D柱状图和折线图的组合图调试错误
    FusionCharts 2D柱状图和折线图的组合图
    Action写法心得
    SSH2三大框架SQL查询
    JUnit4测试出错(一)
    Java兔子问题
    FusionCharts重写单系列图
    Java中的Calendar方法
    Java的Random总结
    rtsp协议详解
  • 原文地址:https://www.cnblogs.com/powerxu/p/2496815.html
Copyright © 2011-2022 走看看