Cluster Configuration Issues

2009-10-20 Thread Mark Vigeant
Hey- So I'm trying to run hbase on 4 nodes, and in order to do that I need to run zookeeper in replicated mode (I could have hbase run the quorum for me, but it's suggested that I don't). I have an issue though. For some reason the id I'm assigning each server in the file myid in the

Re: Cluster Configuration Issues

2009-10-20 Thread Henry Robinson
Hi Mark - You should create the myid file yourself, as you have done. What errors are you seeing that lead you to think the id is not being read correctly? cheers, Henry On Tue, Oct 20, 2009 at 10:12 AM, Mark Vigeant mark.vige...@riskmetrics.com wrote: Hey- So I'm trying to run hbase on 4

Re: Cluster Configuration Issues

2009-10-20 Thread Mahadev Konar
HI Mark, ZooKeeper does not create the myid file in the data directory. Looking at the config file it looks like it is missing the quorum configuration for other servers. Please take alook at http://hadoop.apache.org/zookeeper/docs/r3.2.1/zookeeperAdmin.html#sc_zkMuli tServerSetup You will

Re: Cluster Configuration Issues

2009-10-20 Thread Patrick Hunt
You might try my ZooKeeper configuration generator if you have python handy: http://bit.ly/mBEcF The main issue that I see with your config is that each config file needs to contain a list of all the servers in the ensemble: ... syncLimit=2 server.1=host1... server.2=host2...