gpt4 book ai didi

java - HBase:Zookeeper 告诉远程客户端连接到本地主机

转载 作者:可可西里 更新时间:2023-11-01 14:23:31 26 4
gpt4 key购买 nike

这里是 HBase/Hadoop 的 super 新手。我启动并运行了一个双节点 HBase 测试集群,现在我正尝试从远程 Java 客户端连接到该集群。这是我卡住的地方:客户端成功连接到单服务器 Zookeeper quorum(与 HBase master 在同一台服务器上运行),但是 Zookeeper 传回给客户端的地址是 localhost,并且(显然)客户端失败连接到任何东西,因为 HBase 没有在本地运行。考虑到出于管理原因我无法编辑客户端主机文件(无论如何我都不愿意这样做,因为这看起来像是一个糟糕的 hack),有没有办法让 Zookeeper 为HBase 主服务器?

Java代码:

public static final String MASTER_IP = "10.3.248.105";
public static final String ZOOKEEPER_PORT = "2181";

Configuration config = HBaseConfiguration.create();
config.set("hbase.zookeeper.quorum", MASTER_IP);
config.set("hbase.zookeeper.property.clientPort", ZOOKEEPER_PORT);

System.out.println("Running connecting test...");

try {
HBaseAdmin.checkHBaseAvailable(config);
System.out.println("HBase found!");
HTable table = new HTable(config, "testTable");
System.out.println("Table testTable obtained!");
} catch (MasterNotRunningException e) {
System.out.println("HBase connection failed!");
e.printStackTrace();
} catch (ZooKeeperConnectionException e) {
System.out.println("Zookeeper connection failed!");
e.printStackTrace();
} catch (Exception e) { e.printStackTrace(); }

错误转储:

13/06/27 11:20:25 INFO zookeeper.ZooKeeper: Initiating client connection, connectString=10.3.248.105:2181 sessionTimeout=180000 watcher=hconnection
13/06/27 11:20:25 INFO zookeeper.RecoverableZooKeeper: The identifier of this process is 5896@HQNJVCVM0004
13/06/27 11:20:29 INFO zookeeper.ClientCnxn: Opening socket connection to server 10.3.248.105/10.3.248.105:2181. Will not attempt to authenticate using SASL (unknown error)
13/06/27 11:20:29 INFO zookeeper.ClientCnxn: Socket connection established to 10.3.248.105/10.3.248.105:2181, initiating session
13/06/27 11:20:29 INFO zookeeper.ClientCnxn: Session establishment complete on server 10.3.248.105/10.3.248.105:2181, sessionid = 0x13f8638485c0003, negotiated timeout = 180000
13/06/27 11:20:30 INFO client.HConnectionManager$HConnectionImplementation: getMaster attempt 0 of 1 failed; no more retrying.
java.net.UnknownHostException: unknown host: localhost.localdomain
HBase connection failed!
at org.apache.hadoop.hbase.ipc.HBaseClient$Connection.<init>(HBaseClient.java:276)
at org.apache.hadoop.hbase.ipc.HBaseClient.createConnection(HBaseClient.java:255)
at org.apache.hadoop.hbase.ipc.HBaseClient.getConnection(HBaseClient.java:1111)
at org.apache.hadoop.hbase.ipc.HBaseClient.call(HBaseClient.java:974)
at org.apache.hadoop.hbase.ipc.WritableRpcEngine$Invoker.invoke(WritableRpcEngine.java:86)
at com.sun.proxy.$Proxy5.getProtocolVersion(Unknown Source)
at org.apache.hadoop.hbase.ipc.WritableRpcEngine.getProxy(WritableRpcEngine.java:138)
at org.apache.hadoop.hbase.client.HConnectionManager$HConnectionImplementation.getMaster(HConnectionManager.java:712)
at org.apache.hadoop.hbase.client.HBaseAdmin.<init>(HBaseAdmin.java:126)
at org.apache.hadoop.hbase.client.HBaseAdmin.checkHBaseAvailable(HBaseAdmin.java:1781)
at hbaseimagestore.HBaseImageStore.main(HBaseImageStore.java:44)
13/06/27 11:20:30 INFO client.HConnectionManager$HConnectionImplementation: Closed zookeeper sessionid=0x13f8638485c0003
13/06/27 11:20:30 INFO zookeeper.ZooKeeper: Session: 0x13f8638485c0003 closed
org.apache.hadoop.hbase.MasterNotRunningException: Retried 1 times
at org.apache.hadoop.hbase.client.HBaseAdmin.<init>(HBaseAdmin.java:138)
at org.apache.hadoop.hbase.client.HBaseAdmin.checkHBaseAvailable(HBaseAdmin.java:1781)
at hbaseimagestore.HBaseImageStore.main(HBaseImageStore.java:44)
13/06/27 11:20:30 INFO zookeeper.ClientCnxn: EventThread shut down

编辑:另外,master/zookeeper 服务器上的/etc/hosts 文件:

10.3.248.105   master
10.3.248.106 slave
127.0.0.1 localhost

最佳答案

我不知道这是否是执行此操作的最佳方法,但它应该可以解决问题。将 master 的主机文件更改为:

10.3.248.105   master     localhost
10.3.248.106 slave
#127.0.0.1 localhost

此更改后重新启动 hbase。

关于java - HBase:Zookeeper 告诉远程客户端连接到本地主机,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17347841/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com