This looks like a zk client trying to connect to zk ensemble. This happens when your program is running? More in the below:
On Wed, May 4, 2011 at 12:19 AM, King JKing <[email protected]> wrote: > Here is my code > Configuration config = new Configuration(false); > config.addResource(new Path("conf/hbase-dev.xml")); Why not do 'Configuration config = HBaseConfiguration.create()' so you pick up defaults for hbase? That might help. Then do your add of conf/hbase-dev.xml (Is this working?). > Thread.sleep(20000); > Are you stopping/starting HBase in here? You are trying to test that client rides over hbase restart? St.Ack
