You are viewing a plain text version of this content. The canonical link for it is here.
Posted to user@hbase.apache.org by shapoor <es...@yahoo.com> on 2014/02/24 14:27:58 UTC

(HConnectionManager.java:389)

hello,
is there a difference in initializing Javaclient for hbase 0.96.1.1 compared
to 0.94 ? 

Configuration hadoopConf = HBaseConfiguration.create();
hadoopConf.set("hbase.zookeeper.quorum", "192.168.111.212");
hadoopConf.set("hbase.zookeeper.property.clientPort", "2181");
HConnection connection = HConnectionManager.createConnection(hadoopConf);

leads to the following with 0.96.1.1 :

java.io.IOException: java.lang.reflect.InvocationTargetException
        at
org.apache.hadoop.hbase.client.HConnectionManager.createConnection(HConnectionManager.java:389)
        at
org.apache.hadoop.hbase.client.HConnectionManager.createConnection(HConnectionManager.java:366)
        at
org.apache.hadoop.hbase.client.HConnectionManager.getConnection(HConnectionManager.java:247)
        at
org.apache.hadoop.hbase.client.HBaseAdmin.<init>(HBaseAdmin.java:183)

regards and thx,



--
View this message in context: http://apache-hbase.679495.n3.nabble.com/HConnectionManager-java-389-tp4056268.html
Sent from the HBase User mailing list archive at Nabble.com.

Re: (HConnectionManager.java:389)

Posted by Ted Yu <yu...@gmail.com>.
For winutil.exe, see this thread:

http://search-hadoop.com/m/DHED48Mdfd2/windows+client+and+ignoring+winutils.exe&subj=windows+client+and+ignoring+winutils+exe+


On Tue, Feb 25, 2014 at 9:23 AM, shapoor <es...@yahoo.com> wrote:

> Yes of course. I have tried a few things:
>
> 1. The protobuf 2.5.0 you sujested was indeed needed and solved most of the
> problem in the first place. Although I got other exceptions.
>
> 2. Then I saw I had lots of slf4j jars with different versions downloaded
> from different modules. It might have solved the mystery navigate them to
> use only one version (with maven exclusions).
>
> 3. There was another conflict between hadoop2.2.0 jersey and my own. I also
> excluded the one shiped with hadoop. It solved other exceptions regarding
> usage of new hadoop/hbase versions.
>
> that was pretty much it and it might seem short but it took a lot of
> frustration. The migration is successfull and my tests work fine.
>
> The last bothering issue is this winutil.exe that is required, which it
> shouldn't, since my cluster installation is in an Ubuntu server but my
> client in a win7. I have no installation in win7. The exception doesnt seem
> to have influence on the functionality but it bothers a little bit so i
> told
> my java code to find HBaseConnection a fake winuil.exe.
>
> thanks again and regards,
>
>
>
>
>
> --
> View this message in context:
> http://apache-hbase.679495.n3.nabble.com/HConnectionManager-java-389-tp4056268p4056345.html
> Sent from the HBase User mailing list archive at Nabble.com.
>

Re: (HConnectionManager.java:389)

Posted by shapoor <es...@yahoo.com>.
Yes of course. I have tried a few things:

1. The protobuf 2.5.0 you sujested was indeed needed and solved most of the
problem in the first place. Although I got other exceptions.

2. Then I saw I had lots of slf4j jars with different versions downloaded
from different modules. It might have solved the mystery navigate them to
use only one version (with maven exclusions).

3. There was another conflict between hadoop2.2.0 jersey and my own. I also
excluded the one shiped with hadoop. It solved other exceptions regarding
usage of new hadoop/hbase versions.

that was pretty much it and it might seem short but it took a lot of
frustration. The migration is successfull and my tests work fine. 

The last bothering issue is this winutil.exe that is required, which it
shouldn't, since my cluster installation is in an Ubuntu server but my
client in a win7. I have no installation in win7. The exception doesnt seem
to have influence on the functionality but it bothers a little bit so i told
my java code to find HBaseConnection a fake winuil.exe.

thanks again and regards,





--
View this message in context: http://apache-hbase.679495.n3.nabble.com/HConnectionManager-java-389-tp4056268p4056345.html
Sent from the HBase User mailing list archive at Nabble.com.

Re: (HConnectionManager.java:389)

Posted by Ted Yu <yu...@gmail.com>.
Can you outline what jars caused the conflict so that other people can
solve similar problems more quickly ?

Cheers


On Tue, Feb 25, 2014 at 8:54 AM, shapoor <es...@yahoo.com> wrote:

> I just wanted to thank you for your support. thanks to your tipps I solved
> the problem with eliminating jar conflicts and it is running fine now.
> respectfully,
>
>
>
>
> --
> View this message in context:
> http://apache-hbase.679495.n3.nabble.com/HConnectionManager-java-389-tp4056268p4056341.html
> Sent from the HBase User mailing list archive at Nabble.com.
>

Re: (HConnectionManager.java:389)

Posted by shapoor <es...@yahoo.com>.
I just wanted to thank you for your support. thanks to your tipps I solved
the problem with eliminating jar conflicts and it is running fine now.
respectfully,




--
View this message in context: http://apache-hbase.679495.n3.nabble.com/HConnectionManager-java-389-tp4056268p4056341.html
Sent from the HBase User mailing list archive at Nabble.com.

Re: (HConnectionManager.java:389)

Posted by shapoor <es...@yahoo.com>.
This is already in my hbase-site.xml file:

  <property>
    <name>hbase.rootdir</name>
    <value>hdfs://192.168.111.210:8020/hbase</value>
    <description>The directory shared by RegionServers.
    </description>
  </property>

The Code is simple:

Configuration hadoopConf = HBaseConfiguration.create();
hadoopConf.set("hbase.zookeeper.quorum", "192.168.111.212");
hadoopConf.set("hbase.zookeeper.property.clientPort", "2181");
// hadoopConf.set("hbase.rootdir", "hdfs://192.168.111.210:8020/hbase");
//!!?? this is not eeded    	
HConnection connection = HConnectionManager.createConnection(hadoopConf);

And like I said it always worked with hbase-0.94, but with 0.96.1.1-hadoop2
comes the exception.

I wonder what could be wrong here!!

regards,




--
View this message in context: http://apache-hbase.679495.n3.nabble.com/HConnectionManager-java-389-tp4056268p4056328.html
Sent from the HBase User mailing list archive at Nabble.com.

Re: (HConnectionManager.java:389)

Posted by Ted Yu <yu...@gmail.com>.
You need to specify the following in your config (value portion is just a
sample):

<property>
<name>hbase.rootdir</name>
<value>
hdfs://y.net:8020/database
</value>
</property>

Cheers


On Mon, Feb 24, 2014 at 3:27 PM, shapoor <es...@yahoo.com> wrote:

> I really thank you for giving the tips. But the links I have studied
> before.
> I have hbase-0.96.1.1-hadoop2 using hdfs of hadoop2.2.0. I have my code in
> eclipse/win7 and the installation is ofcourse in an Ubuntu server. I
> searched the web many times but couldn't find a solution. I would be
> greatfull if I could get some answers here.
>
> respectfully,
>
>
>
> --
> View this message in context:
> http://apache-hbase.679495.n3.nabble.com/HConnectionManager-java-389-tp4056268p4056297.html
> Sent from the HBase User mailing list archive at Nabble.com.
>

Re: (HConnectionManager.java:389)

Posted by shapoor <es...@yahoo.com>.
I really thank you for giving the tips. But the links I have studied before.
I have hbase-0.96.1.1-hadoop2 using hdfs of hadoop2.2.0. I have my code in
eclipse/win7 and the installation is ofcourse in an Ubuntu server. I
searched the web many times but couldn't find a solution. I would be
greatfull if I could get some answers here.

respectfully,



--
View this message in context: http://apache-hbase.679495.n3.nabble.com/HConnectionManager-java-389-tp4056268p4056297.html
Sent from the HBase User mailing list archive at Nabble.com.

Re: (HConnectionManager.java:389)

Posted by Ted Yu <yu...@gmail.com>.
See http://hbase.apache.org/book.html#d2566e523 for supported hadoop
versions.

Cheers


On Mon, Feb 24, 2014 at 1:04 PM, shapoor <es...@yahoo.com> wrote:

> Thanks very much indeed.  I added the repository you sujested and it
> worked.
> Though in another package I get the following exception:
>
> 14/02/24 19:59:24 INFO zookeeper.ClientCnxn: Session establishment complete
> on server slave02/192.168.111.212:2181, sessionid = 0x1446491571a0208,
> negotiated timeout = 40000
> Exception in thread "main" java.io.IOException:
> java.lang.reflect.InvocationTargetException
>         at
>
> org.apache.hadoop.hbase.client.HConnectionManager.createConnection(HConnectionManager.java:389)
>         at
>
> org.apache.hadoop.hbase.client.HConnectionManager.createConnection(HConnectionManager.java:282)
>         at
> at.mypackage.hbase.HBaseResourceManager.main(HBaseResourceManager.java:77)
> Caused by: java.lang.reflect.InvocationTargetException
>         at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native
> Method)
>         at sun.reflect.NativeConstructorAccessorImpl.newInstance(Unknown
> Source)
>         at
> sun.reflect.DelegatingConstructorAccessorImpl.newInstance(Unknown
> Source)
>         at java.lang.reflect.Constructor.newInstance(Unknown Source)
>         at
>
> org.apache.hadoop.hbase.client.HConnectionManager.createConnection(HConnectionManager.java:387)
>         ... 2 more
> Caused by: java.lang.ExceptionInInitializerError
>         at org.apache.hadoop.hbase.ClusterId.parseFrom(ClusterId.java:64)
>         at
>
> org.apache.hadoop.hbase.zookeeper.ZKClusterId.readClusterIdZNode(ZKClusterId.java:69)
>         at
>
> org.apache.hadoop.hbase.client.ZooKeeperRegistry.getClusterId(ZooKeeperRegistry.java:83)
>         at
>
> org.apache.hadoop.hbase.client.HConnectionManager$HConnectionImplementation.retrieveClusterId(HConnectionManager.java:801)
>         at
>
> org.apache.hadoop.hbase.client.HConnectionManager$HConnectionImplementation.<init>(HConnectionManager.java:633)
>         ... 7 more
> Caused by: java.lang.UnsupportedOperationException: Not implemented by the
> DistributedFileSystem FileSystem implementation
>         at org.apache.hadoop.fs.FileSystem.getScheme(FileSystem.java:213)
>         at
> org.apache.hadoop.fs.FileSystem.loadFileSystems(FileSystem.java:2401)
>         at
> org.apache.hadoop.fs.FileSystem.getFileSystemClass(FileSystem.java:2411)
>         at
> org.apache.hadoop.fs.FileSystem.createFileSystem(FileSystem.java:2428)
>         at org.apache.hadoop.fs.FileSystem.access$200(FileSystem.java:88)
>         at
> org.apache.hadoop.fs.FileSystem$Cache.getInternal(FileSystem.java:2467)
>         at org.apache.hadoop.fs.FileSystem$Cache.get(FileSystem.java:2449)
>         at org.apache.hadoop.fs.FileSystem.get(FileSystem.java:367)
>         at org.apache.hadoop.fs.FileSystem.get(FileSystem.java:166)
>         at org.apache.hadoop.fs.FileSystem.get(FileSystem.java:351)
>         at org.apache.hadoop.fs.Path.getFileSystem(Path.java:287)
>         at
>
> org.apache.hadoop.hbase.util.DynamicClassLoader.<init>(DynamicClassLoader.java:104)
>         at
>
> org.apache.hadoop.hbase.protobuf.ProtobufUtil.<clinit>(ProtobufUtil.java:197)
>         ... 12 more
>
> thx very much for your help,
> regards
>
>
>
> --
> View this message in context:
> http://apache-hbase.679495.n3.nabble.com/HConnectionManager-java-389-tp4056268p4056286.html
> Sent from the HBase User mailing list archive at Nabble.com.
>

Re: (HConnectionManager.java:389)

Posted by shapoor <es...@yahoo.com>.
Thanks very much indeed.  I added the repository you sujested and it worked.
Though in another package I get the following exception:

14/02/24 19:59:24 INFO zookeeper.ClientCnxn: Session establishment complete
on server slave02/192.168.111.212:2181, sessionid = 0x1446491571a0208,
negotiated timeout = 40000
Exception in thread "main" java.io.IOException:
java.lang.reflect.InvocationTargetException
	at
org.apache.hadoop.hbase.client.HConnectionManager.createConnection(HConnectionManager.java:389)
	at
org.apache.hadoop.hbase.client.HConnectionManager.createConnection(HConnectionManager.java:282)
	at
at.mypackage.hbase.HBaseResourceManager.main(HBaseResourceManager.java:77)
Caused by: java.lang.reflect.InvocationTargetException
	at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)
	at sun.reflect.NativeConstructorAccessorImpl.newInstance(Unknown Source)
	at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(Unknown
Source)
	at java.lang.reflect.Constructor.newInstance(Unknown Source)
	at
org.apache.hadoop.hbase.client.HConnectionManager.createConnection(HConnectionManager.java:387)
	... 2 more
Caused by: java.lang.ExceptionInInitializerError
	at org.apache.hadoop.hbase.ClusterId.parseFrom(ClusterId.java:64)
	at
org.apache.hadoop.hbase.zookeeper.ZKClusterId.readClusterIdZNode(ZKClusterId.java:69)
	at
org.apache.hadoop.hbase.client.ZooKeeperRegistry.getClusterId(ZooKeeperRegistry.java:83)
	at
org.apache.hadoop.hbase.client.HConnectionManager$HConnectionImplementation.retrieveClusterId(HConnectionManager.java:801)
	at
org.apache.hadoop.hbase.client.HConnectionManager$HConnectionImplementation.<init>(HConnectionManager.java:633)
	... 7 more
Caused by: java.lang.UnsupportedOperationException: Not implemented by the
DistributedFileSystem FileSystem implementation
	at org.apache.hadoop.fs.FileSystem.getScheme(FileSystem.java:213)
	at org.apache.hadoop.fs.FileSystem.loadFileSystems(FileSystem.java:2401)
	at org.apache.hadoop.fs.FileSystem.getFileSystemClass(FileSystem.java:2411)
	at org.apache.hadoop.fs.FileSystem.createFileSystem(FileSystem.java:2428)
	at org.apache.hadoop.fs.FileSystem.access$200(FileSystem.java:88)
	at org.apache.hadoop.fs.FileSystem$Cache.getInternal(FileSystem.java:2467)
	at org.apache.hadoop.fs.FileSystem$Cache.get(FileSystem.java:2449)
	at org.apache.hadoop.fs.FileSystem.get(FileSystem.java:367)
	at org.apache.hadoop.fs.FileSystem.get(FileSystem.java:166)
	at org.apache.hadoop.fs.FileSystem.get(FileSystem.java:351)
	at org.apache.hadoop.fs.Path.getFileSystem(Path.java:287)
	at
org.apache.hadoop.hbase.util.DynamicClassLoader.<init>(DynamicClassLoader.java:104)
	at
org.apache.hadoop.hbase.protobuf.ProtobufUtil.<clinit>(ProtobufUtil.java:197)
	... 12 more

thx very much for your help,
regards



--
View this message in context: http://apache-hbase.679495.n3.nabble.com/HConnectionManager-java-389-tp4056268p4056286.html
Sent from the HBase User mailing list archive at Nabble.com.

Re: (HConnectionManager.java:389)

Posted by Ted Yu <yu...@gmail.com>.
Can you check the version of protobuf jar in the classpath of your client ?

2.5.0 of protobuf is expected:

[INFO] |  +- com.google.protobuf:protobuf-java:jar:2.5.0:compile




On Mon, Feb 24, 2014 at 9:54 AM, shapoor <es...@yahoo.com> wrote:

> 14/02/24 16:51:20 INFO zookeeper.ZooKeeper: Initiating client connection,
> connectString=192.168.111.212:2181 sessionTimeout=90000
> watcher=hconnection-0x627fbcda, quorum=192.168.111.212:2181,
> baseZNode=/hbase
> 14/02/24 16:51:20 INFO zookeeper.ClientCnxn: Opening socket connection to
> server slave02/192.168.111.212:2181. Will not attempt to authenticate
> using
> SASL (unknown error)
> 14/02/24 16:51:20 INFO zookeeper.ClientCnxn: Socket connection established
> to slave02/192.168.111.212:2181, initiating session
> 14/02/24 16:51:20 INFO zookeeper.RecoverableZooKeeper: Process
> identifier=hconnection-0x627fbcda connecting to ZooKeeper
> ensemble=192.168.111.212:2181
> 14/02/24 16:51:20 INFO zookeeper.ClientCnxn: Session establishment complete
> on server slave02/192.168.111.212:2181, sessionid = 0x1446491571a0008,
> negotiated timeout = 40000
> Exception in thread "main" java.io.IOException:
> java.lang.reflect.InvocationTargetException
>         at
>
> org.apache.hadoop.hbase.client.HConnectionManager.createConnection(HConnectionManager.java:389)
>         at
>
> org.apache.hadoop.hbase.client.HConnectionManager.createConnection(HConnectionManager.java:282)
>         at at.mypackage.configuration.HbaseConf.main(HbaseConf.java:60)
> Caused by: java.lang.reflect.InvocationTargetException
>         at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native
> Method)
>         at sun.reflect.NativeConstructorAccessorImpl.newInstance(Unknown
> Source)
>         at
> sun.reflect.DelegatingConstructorAccessorImpl.newInstance(Unknown
> Source)
>         at java.lang.reflect.Constructor.newInstance(Unknown Source)
>         at
>
> org.apache.hadoop.hbase.client.HConnectionManager.createConnection(HConnectionManager.java:387)
>         ... 2 more
> Caused by: java.lang.VerifyError: class
> org.apache.hadoop.hbase.protobuf.generated.ClientProtos$Result overrides
> final method getUnknownFields.()Lcom/google/protobuf/UnknownFieldSet;
>         at java.lang.ClassLoader.defineClass1(Native Method)
>         at java.lang.ClassLoader.defineClass(Unknown Source)
>         at java.security.SecureClassLoader.defineClass(Unknown Source)
>         at java.net.URLClassLoader.defineClass(Unknown Source)
>         at java.net.URLClassLoader.access$100(Unknown Source)
>         at java.net.URLClassLoader$1.run(Unknown Source)
>         at java.net.URLClassLoader$1.run(Unknown Source)
>         at java.security.AccessController.doPrivileged(Native Method)
>         at java.net.URLClassLoader.findClass(Unknown Source)
>         at java.lang.ClassLoader.loadClass(Unknown Source)
>         at sun.misc.Launcher$AppClassLoader.loadClass(Unknown Source)
>         at java.lang.ClassLoader.loadClass(Unknown Source)
>         at
>
> org.apache.hadoop.hbase.protobuf.ProtobufUtil.<clinit>(ProtobufUtil.java:172)
>         at org.apache.hadoop.hbase.ClusterId.parseFrom(ClusterId.java:64)
>         at
>
> org.apache.hadoop.hbase.zookeeper.ZKClusterId.readClusterIdZNode(ZKClusterId.java:69)
>         at
>
> org.apache.hadoop.hbase.client.ZooKeeperRegistry.getClusterId(ZooKeeperRegistry.java:83)
>         at
>
> org.apache.hadoop.hbase.client.HConnectionManager$HConnectionImplementation.retrieveClusterId(HConnectionManager.java:801)
>         at
>
> org.apache.hadoop.hbase.client.HConnectionManager$HConnectionImplementation.<init>(HConnectionManager.java:633)
>
> regards
>
>
>
> --
> View this message in context:
> http://apache-hbase.679495.n3.nabble.com/HConnectionManager-java-389-tp4056268p4056275.html
> Sent from the HBase User mailing list archive at Nabble.com.
>

Re: (HConnectionManager.java:389)

Posted by shapoor <es...@yahoo.com>.
14/02/24 16:51:20 INFO zookeeper.ZooKeeper: Initiating client connection,
connectString=192.168.111.212:2181 sessionTimeout=90000
watcher=hconnection-0x627fbcda, quorum=192.168.111.212:2181,
baseZNode=/hbase
14/02/24 16:51:20 INFO zookeeper.ClientCnxn: Opening socket connection to
server slave02/192.168.111.212:2181. Will not attempt to authenticate using
SASL (unknown error)
14/02/24 16:51:20 INFO zookeeper.ClientCnxn: Socket connection established
to slave02/192.168.111.212:2181, initiating session
14/02/24 16:51:20 INFO zookeeper.RecoverableZooKeeper: Process
identifier=hconnection-0x627fbcda connecting to ZooKeeper
ensemble=192.168.111.212:2181
14/02/24 16:51:20 INFO zookeeper.ClientCnxn: Session establishment complete
on server slave02/192.168.111.212:2181, sessionid = 0x1446491571a0008,
negotiated timeout = 40000
Exception in thread "main" java.io.IOException:
java.lang.reflect.InvocationTargetException
	at
org.apache.hadoop.hbase.client.HConnectionManager.createConnection(HConnectionManager.java:389)
	at
org.apache.hadoop.hbase.client.HConnectionManager.createConnection(HConnectionManager.java:282)
	at at.mypackage.configuration.HbaseConf.main(HbaseConf.java:60)
Caused by: java.lang.reflect.InvocationTargetException
	at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)
	at sun.reflect.NativeConstructorAccessorImpl.newInstance(Unknown Source)
	at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(Unknown
Source)
	at java.lang.reflect.Constructor.newInstance(Unknown Source)
	at
org.apache.hadoop.hbase.client.HConnectionManager.createConnection(HConnectionManager.java:387)
	... 2 more
Caused by: java.lang.VerifyError: class
org.apache.hadoop.hbase.protobuf.generated.ClientProtos$Result overrides
final method getUnknownFields.()Lcom/google/protobuf/UnknownFieldSet;
	at java.lang.ClassLoader.defineClass1(Native Method)
	at java.lang.ClassLoader.defineClass(Unknown Source)
	at java.security.SecureClassLoader.defineClass(Unknown Source)
	at java.net.URLClassLoader.defineClass(Unknown Source)
	at java.net.URLClassLoader.access$100(Unknown Source)
	at java.net.URLClassLoader$1.run(Unknown Source)
	at java.net.URLClassLoader$1.run(Unknown Source)
	at java.security.AccessController.doPrivileged(Native Method)
	at java.net.URLClassLoader.findClass(Unknown Source)
	at java.lang.ClassLoader.loadClass(Unknown Source)
	at sun.misc.Launcher$AppClassLoader.loadClass(Unknown Source)
	at java.lang.ClassLoader.loadClass(Unknown Source)
	at
org.apache.hadoop.hbase.protobuf.ProtobufUtil.<clinit>(ProtobufUtil.java:172)
	at org.apache.hadoop.hbase.ClusterId.parseFrom(ClusterId.java:64)
	at
org.apache.hadoop.hbase.zookeeper.ZKClusterId.readClusterIdZNode(ZKClusterId.java:69)
	at
org.apache.hadoop.hbase.client.ZooKeeperRegistry.getClusterId(ZooKeeperRegistry.java:83)
	at
org.apache.hadoop.hbase.client.HConnectionManager$HConnectionImplementation.retrieveClusterId(HConnectionManager.java:801)
	at
org.apache.hadoop.hbase.client.HConnectionManager$HConnectionImplementation.<init>(HConnectionManager.java:633)

regards



--
View this message in context: http://apache-hbase.679495.n3.nabble.com/HConnectionManager-java-389-tp4056268p4056275.html
Sent from the HBase User mailing list archive at Nabble.com.

Re: (HConnectionManager.java:389)

Posted by Ted Yu <yu...@gmail.com>.
Can you show us the full stack trace ?

Thanks

On Feb 24, 2014, at 5:27 AM, shapoor <es...@yahoo.com> wrote:

> hello,
> is there a difference in initializing Javaclient for hbase 0.96.1.1 compared
> to 0.94 ? 
> 
> Configuration hadoopConf = HBaseConfiguration.create();
> hadoopConf.set("hbase.zookeeper.quorum", "192.168.111.212");
> hadoopConf.set("hbase.zookeeper.property.clientPort", "2181");
> HConnection connection = HConnectionManager.createConnection(hadoopConf);
> 
> leads to the following with 0.96.1.1 :
> 
> java.io.IOException: java.lang.reflect.InvocationTargetException
>        at
> org.apache.hadoop.hbase.client.HConnectionManager.createConnection(HConnectionManager.java:389)
>        at
> org.apache.hadoop.hbase.client.HConnectionManager.createConnection(HConnectionManager.java:366)
>        at
> org.apache.hadoop.hbase.client.HConnectionManager.getConnection(HConnectionManager.java:247)
>        at
> org.apache.hadoop.hbase.client.HBaseAdmin.<init>(HBaseAdmin.java:183)
> 
> regards and thx,
> 
> 
> 
> --
> View this message in context: http://apache-hbase.679495.n3.nabble.com/HConnectionManager-java-389-tp4056268.html
> Sent from the HBase User mailing list archive at Nabble.com.