The most important conf parameter for client to connect to HBase cluster is
hbase.zookeeper.quorum

On Mon, May 9, 2011 at 1:57 PM, James McGlothlin <[email protected]>wrote:

>
> I am able to utilize HBase from the shell with no problems.
>
> However, I have been unable to access it from Java code.  I may very well
> be
> making some simple error but I am at a lost as all the examples I find do
> it
> the same way.
>
> I have tried:
>
> Configuration conf=  HBaseConfiguration.create();
> HBaseAdmin hbase = new HBaseAdmin(conf);
> HTable gicp = new HTable(conf,"GICP");
>
> and I have tried skipping the HBaseAdmin step:
>
> Configuration conf=  HBaseConfiguration.create();
> HTable gicp = new HTable(conf,"GICP");
>
> and I have tried adding a dset step:
>
> conf.dset("hbase.master","localhost:60000");
>
> While the errors appear to all be zookeeper related, they are not
> consistent.
>
> I am running hbase 0.90.1 on a 9 machine hadoop cluster.
>
> Help would be greatly appreciated.  The conf creation always works and the
> next line always fails.  I can create tables from HBase shell with no
> problem.
>
> All assistance is appreciated,
>
> James McGlothlin
> --
> View this message in context:
> http://old.nabble.com/just-trying-to-get-into-HBase-from-java-tp31580562p31580562.html
> Sent from the HBase User mailing list archive at Nabble.com.
>
>

Reply via email to