And our hosts is follows [root@blade1 ~]# cat /etc/hosts 127.0.0.1 localhost localhost.localdomain localhost4 localhost4.localdomain4 ::1 localhost localhost.localdomain localhost6 localhost6.localdomain6
192.168.76.233 blade1 192.168.76.234 blade2 192.168.76.235 blade3 192.168.76.236 blade4 192.168.76.237 blade5 192.168.76.238 blade6 192.168.76.239 blade7 192.168.76.240 blade8 192.168.76.245 fnode1 192.168.76.246 fnode2 [root@blade1 ~]# -----邮件原件----- 发件人: [email protected] [mailto:[email protected]] 代表 tgh 发送时间: 2012年12月11日 9:00 收件人: [email protected] 主题: 答复: how config multi regionserver, or what is wrong? Thank you for your reply, And the configuration file is here, Could you help me, Thank you --------------------------- Tian Guanhua [root@blade1 conf]# cat regionservers blade1 blade2 blade3 blade4 blade5 blade6 blade7 blade8 [root@blade1 conf]# [root@blade1 conf]# vim hbase-site.xml <?xml version="1.0"?> <?xml-stylesheet type="text/xsl" href="configuration.xsl"?> <!-- --> <configuration> <property> <name>hbase.rootdir</name> <value>hdfs://blade1:9000/hbase</value> <description>The directory shared by RegionServers.</description> </property> <property> <name>hbase.cluster.distributed</name> <value>true</value> </property> <property> <name>hbase.zookeeper.quorum</name> <value>blade1,blade2,blade3</value> </property> <property> <name>hbase.zookeeper.property.dataDir</name> <value>/home/liuxin/zookeeper/data</value> </property> <property> <name>dfs.support.append</name> <value>true</value> </property> <property> <name>dfs.datanode.max.xcievers</name> <value>4096</value> </property> <property> <name>hbase.master</name> <value>blade1:60000</value> </property> </configuration> -----邮件原件----- 发件人: [email protected] [mailto:[email protected]] 代表 Jean-Marc Spaggiari 发送时间: 2012年12月10日 20:54 收件人: [email protected] 主题: Re: how config multi regionserver, or what is wrong? Hi Tian, Can you share you configuration files? Do you have something like that on your hbase-site.xml file? <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> JM 2012/12/10, tgh <[email protected]>: > Hi > I try to use hbase, and now ,I have a problem with hbase > configuration, I use 8node for try, and it seems to work, hadoop, > zookeeper, hbase all boot up, and it could insert into with putAPI , > But when I try to use masterIP:60010 to manage it, I find there are > only one regionserver there, and it is localhost:60030, why? > I have set regionserver file , there are 8 nodes there, and all could > ssh to each other without passwd, > > And I also use hdfsNamenodeIP:50070 to see HDFS, and it seems OK, the > data have been balanced across 8node, but I wander hbase only have one > regionserver to work, although when I star/stop regionserver , there > are 8region server to start and stop, > > And I try to put data into hbase, it seems ok at first, but after > 200million in hbase, it seems really hard to insert more into it, it > is very slow, and I use masterIP:60010 to manage it, I find there are > only one regionserver there, and it is localhost:60030, why? > > > Could you help me, > > > > Thank you > ------------------- > Tian Guanhua > > > > > > >
