CDH 对hbase的优化,可以从界面配置,配置界面可以配置很多参数,如下图:
2 编写程序的时候,我自己做了一个hbase-site.xml很简单,如下:
<configuration>
<property>
<name>hbase.rootdir</name>
<value>hdfs://master1:8020/hbase</value>
<!-- <value>hdfs://master:8020/hbase</value> -->
</property>
<property>
<name>hbase.cluster.distributed</name>
<value>true</value>
</property>
<property>
<name>hbase.zookeeper.property.clientPort</name>
<value>2181</value>
</property>
<property>
<name>hbase.zookeeper.quorum</name>
<!-- <value>master,slave1,slave2,slave3,slave4</value> -->
<value>master1,slave2,slave3,slave4,slave5</value>
</property>
<property>
<name>hbase.zookeeper.property.dataDir</name>
<value>/usr/hadoop/zkmirrodata</value>
</property>
</configuration>
可以对hbase进行添加、修改、删除
问题: 我在CDH集群界面对Hbase做了参数优化,但是在我程序的hbase-site.xml是没有设置的,我这个优化管用吗?
就是CDH各个服务的配置文件是以 CDH 配置界面为准,还是以我写的代码文件夹下面的hbase-site.xml为准?
大家一般是怎么做的?
|
|