HBase Cluster - unable to connect to hbase via phoenix client

I am trying to connect an HBase cluster through Phoenix. First, I copied the Phoenix client and request server files to the HMaster and HRegion lib folder and restarted HBase services.

Server

- launched the Phoenix server through /bin/queryserver.py. It is working fine.

Client - AvaticaClientRuntimeException: Remote driver error: RuntimeException: java.sql.SQLException: No suitable driver found for "http://hacluster:8764".

log data

Hbase-site.xml file configuration for high availability cluster

 <property> <name>hbase.master</name> <value>activenamenode:60000</value> </property> <property> <name>hbase.rootdir</name> <value>hdfs://hacluster/HBase</value> </property> <property> <name>hbase.cluster.distributed</name> <value>true</value> </property> <property> <name>hbase.zookeeper.quorum</name> <value>zk1,zk2,zk3</value> </property> <property> <name>hbase.rpc.timeout</name> <value>60000</value> <property> 

Works on a cluster node. But a crash in the HA-enabled Hadoop cluster.

In the HA cluster, I set the active URL namenode instead of the HA nameservice for the hbase.rootdir property in the hbase-site.xml .

+7
hbase high-availability phoenix
source share

No one has answered this question yet.

See related questions:

5
Connection rejected in Hbase Shell when connecting HBase to HDFS
4
Apache Phoenix - How to start a query server and thin client in a Kerberos cluster
2
hbase-indexer + Phoenix: hbase replication not working?
2
I get some problems when trying to install Hbase in a 5 node hasoop cluster,
2
HBase server servers are down when trying to configure Apache Phoenix
2
Phoenix / HBase Access Protein
2
Squirrel Setup to connect to Phoenix - HBASE: Error java.util.concurrent.ExecutionException: java.lang.RuntimeException: java.lang.NoSuchMethodError:
one
Error starting HBase Java Client
one
Steps required to configure HBase in HA mode in apache hadoop2?
one
Can't connect Phoenix to Hbase using sqlline

All Articles