我尝试使用Java与远程服务器中的HBase连接。下面是我的Java代码
String zookeeperHost = "myserverIP";
String tableName = "User";
Configuration hconfig = HBaseConfiguration.create();
hconfig.setInt("timeout", 1200);
hconfig.set("hbase.zookeeper.quorum",zookeeperHost);
hconfig.set("hbase.zookeeper.property.clientPort", "2181");
TableName tname = TableName.valueOf(tableName);
try {
HBaseAdmin.checkHBaseAvailable(hconfig);
} catch (ServiceException e) {
e.printStackTrace();
}
HTableDescriptor htable = new HTableDescriptor(tname);
htable.addFamily( new HColumnDescriptor("Id"));
htable.addFamily( new HColumnDescriptor("Name"));
System.out.println( "Connecting..." );
Connection connection = ConnectionFactory.createConnection(hconfig);
HBaseAdmin hbase_admin = (HBaseAdmin)connection.getAdmin();
System.out.println( "Creating Table..." );
hbase_admin.createTable( htable );
System.out.println("Done!");
但我不断收到此异常
org.apache.hadoop.hbase.MasterNotRunningException:
com.google.protobuf.ServiceException:java.net.ConnectException:连接>已拒绝:没有更多信息
如何解决此问题?
答案 0 :(得分:0)
在“ hconfig”中添加以下内容
hconfig.set("hbase.master", hbaseConnectionIpAddr);
hconfig.set("hbase.master.port", hbaseConnectionPortNum);
答案 1 :(得分:0)
出现以下异常可能有两个原因
org.apache.hadoop.hbase.MasterNotRunningException
远程VM主机名/ IP。为了解决此问题,您需要更新入站规则以允许端口访问。如果是VM主机名,请确保已在/etc/hosts
中添加了一个条目以解析具有IP地址的主机名。
第二个问题可能是HBase主服务器正在运行。确保HMaster服务是否正在从远程服务器运行。