第3.1.3章 hbase环境准备2——hbase-site.xml

hbase环境准备章节说明了利用zookeeper的zoo.cfg配置,设置hbase的参数配置。
但是Lars George著的《HBase权威指南》支出利用zoo.cfg来配置hbase的方式并不值得提倡,为了防止混乱,只在hbase-site.xml中配置。
详细配置如下:


		hbase.rootdir 
		hdfs://dashuju174:9000/hbase  
	  
	
		hbase.cluster.distributed
    true
  
   
		hbase.zookeeper.property.clientPort 
    2181 
	 
	 
		hbase.zookeeper.property.dataDir 
    /home/hadoop/platform/zookeeper/data 
	 
   
		hbase.zookeeper.quorum 
    dashuju172,dashuju173,dashuju174 
	 

当然hbase/conf中要把zoo.cfg删掉。
如果启用snappy压缩算法,则


        hbase.block.data.cachecompressed
        true
  

同时将snappy的jar拷贝到$HBASE_HOME/lib/native/Linux-amd64-64下,没有/native/Linux-amd64-64文件夹则创建
第3.1.3章 hbase环境准备2——hbase-site.xml_第1张图片

你可能感兴趣的:(hbase,大数据杂烩)