Hi, I copied hbase-site.xml from our staging cluster running 0.20.6 to dev cluster which runs 0.90
Can someone go over the attached file and see if any parameter is incorrectly set ? Thanks
<?xml version="1.0"?> <?xml-stylesheet type="text/xsl" href="configuration.xsl"?> <!-- /** * Copyright 2009 The Apache Software Foundation * * Licensed to the Apache Software Foundation (ASF) under one * or more contributor license agreements. See the NOTICE file * distributed with this work for additional information * regarding copyright ownership. The ASF licenses this file * to you under the Apache License, Version 2.0 (the * "License"); you may not use this file except in compliance * with the License. You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ --> <configuration> <property> <name>hbase.rootdir</name> <!--value>hdfs://localhost:9000/hbase</value--> <value>hdfs://sjc1-hadoop0.sjc1.carrieriq.com:9000/hbase</value> <description>The directory shared by region servers. Should be fully-qualified to include the filesystem to use. E.g: hdfs://NAMENODE_SERVER:PORT/HBASE_ROOTDIR </description> </property> <property> <name>hbase.master</name> <!--value>sjc1-hadoop10.sjc1.carrieriq.com:60000</value--> <value>sjc1-hadoop8.sjc1.carrieriq.com:60000</value> <description>The host and port that the HBase master runs at. </description> </property> <property> <name>hbase.regions.slop</name> <value>0.02</value> </property> <property> <name>hbase.regionserver.restart.on.zk.expire</name> <value>true</value> </property> <property> <name>hbase.cluster.distributed</name> <value>true</value> </property> <property> <name>hbase.client.scanner.caching</name> <value>100</value> </property> <property> <name>hbase.zookeeper.quorum</name> <!--value>sjc1-hadoop0.sjc1.carrieriq.com</value--> <value>sjc1-hadoop0.sjc1.carrieriq.com</value> </property> <property> <name>ciq.hbase.striping</name> <value>45</value> </property> <property> <name>ciq.hbase.striping.write.buffer</name> <value>20028800</value> </property> <property> <name>hbase.regions.percheckin</name> <value>50</value> </property> <property> <name>hbase.hregion.memstore.flush.size</name> <value>536870912</value> </property> <property> <name>hfile.min.blocksize.size</name> <value>262144</value> </property> <property> <name>hbase.master.lease.period</name> <value>60000</value> </property> <property> <name>hbase.regionserver.msginterval</name> <value>23000</value> </property> <property> <name>zookeeper.session.timeout</name> <value>480000</value> </property> <property> <name>hbase.zookeeper.property.tickTime</name> <value>6000</value> </property> <property> <name>hbase.client.retries.number</name> <value>20</value> </property> <property> <name>hbase.hregion.max.filesize</name> <value>1000000000</value> </property> <property> <name>hbase.zookeeper.property.maxClientCnxns</name> <value>400</value> </property> </configuration>
