我为远程服务器编写了以下hbase客户端类:
System.out.println("Hbase Demo Application ");
// CONFIGURATION
// ENSURE RUNNING
try {
HBaseConfiguration config = new HBaseConfiguration();
config.clear();
config.set("hbase.zookeeper.quorum", "192.168.15.20");
config.set("hbase.zookeeper.property.clientPort","2181");
config.set("hbase.master", "192.168.15.20:60000");
//HBaseConfiguration config = HBaseConfiguration.create();
//config.set("hbase.zookeeper.quorum", "localhost"); // Here we are running zookeeper locally
HBaseAdmin.checkHBaseAvailable(config);
System.out.println("HBase is running!");
// createTable(config);
//creating a new table
HTable table = new HTable(config, "mytable");
System.out.println("Table mytable obtained ");
addData(table);
} catch (MasterNotRunningException e) {
System.out.println("HBase is not running!");
System.exit(1);
}catch (Exception ce){ ce.printStackTrace();
它抛出了一些例外:
Oct 17, 2011 1:43:54 PM org.apache.hadoop.hbase.client.HConnectionManager$HConnectionImplementation getMaster
INFO: getMaster attempt 0 of 1 failed; no more retrying.
java.net.ConnectException: Connection refused
at sun.nio.ch.SocketChannelImpl.checkConnect(Native Method)
at sun.nio.ch.SocketChannelImpl.finishConnect(SocketChannelImpl.java:567)
at org.apache.hadoop.net.SocketIOWithTimeout.connect(SocketIOWithTimeout.java:206)
at org.apache.hadoop.net.NetUtils.connect(NetUtils.java:404)
at org.apache.hadoop.hbase.ipc.HBaseClient$Connection.setupIOstreams(HBaseClient.java:328)
at org.apache.hadoop.hbase.ipc.HBaseClient.getConnection(HBaseClient.java:883)
at org.apache.hadoop.hbase.ipc.HBaseClient.call(HBaseClient.java:750)
at org.apache.hadoop.hbase.ipc.HBaseRPC$Invoker.invoke(HBaseRPC.java:257)
at $Proxy4.getProtocolVersion(Unknown Source)
at org.apache.hadoop.hbase.ipc.HBaseRPC.getProxy(HBaseRPC.java:419)
at org.apache.hadoop.hbase.ipc.HBaseRPC.getProxy(HBaseRPC.java:393)
at org.apache.hadoop.hbase.ipc.HBaseRPC.getProxy(HBaseRPC.java:444)
at org.apache.hadoop.hbase.client.HConnectionManager$HConnectionImplementation.getMaster(HConnectionManager.java:359)
at org.apache.hadoop.hbase.client.HBaseAdmin.<init>(HBaseAdmin.java:89)
at org.apache.hadoop.hbase.client.HBaseAdmin.checkHBaseAvailable(HBaseAdmin.java:1215)
at com.ifkaar.hbase.HBaseDemo.main(HBaseDemo.java:31)
HBase is not running!
你能告诉我为什么它会抛出异常,代码出了什么问题以及如何解决它。
答案 0 :(得分:22)
由于您的HBase服务器的hosts文件,此问题正在发生。
您只需要编辑HBase服务器的/ etc / hosts文件。
从该文件中删除localhost条目,并将localhost条目放在HBase服务器IP前面。
例如,您的HBase服务器的/etc/hosts
文件如下所示:
127.0.0.1 localhost
192.166.66.66 xyz.hbase.com hbase
你必须通过删除localhost来改变它:
# 127.0.0.1 localhost # line commented out
192.166.66.66 xyz.hbase.com hbase localhost # note: localhost added here
这是因为当远程机器要求hbase服务器机器运行HMaster时,它会告诉它在localhost上运行。
因此,如果条目是127.0.0.1,则HBase服务器返回此地址,远程机器启动以在其自己的机器(本地)上查找HMaster。
当我们用HBase Server IP改变它时,一切正常:)
答案 1 :(得分:2)
我同意.. HBase对/ etc / hosts配置非常敏感。我必须正确设置hbase-site.xml中的zeekeeper bindings属性才能使上述Java代码正常工作...例如:我必须按如下方式设置它:
{property}
{name}hbase.zookeeper.quorum{/name}
{value}www.remoterg12.net{/value} {!-- this is the externally accessible domain --}
{/property}
{property}
{name}hbase.zookeeper.property.clientPort{/name}
{value}2181{/value} {!-- everything needs to be externally accessible --}
{/property}
{property}
{name}hbase.master.info.port{/name} {!-- http://www.remoterg12.net:60010/ --}
{value}60010{/value}
{/property}
{property}
{name}hbase.master.info.bindAddress{/name}
{value}www.remoterg12.net{/value} {!-- Use this to access the GUI console, --}
{/property}
远程GUI将为您提供绑定域的清晰图片。例如,“GUI Web控制台”中的[HBase Master]属性应该是这样的:www.remoterg12.net:60010(它应该不是localhost:60010)...和YES !!,我确实必须正确使用/ etc / hosts,因为我不想搞乱现有的Apache配置: - )
答案 2 :(得分:0)
通过编辑hbase目录中的conf/regionservers
文件以在其中添加Hbase服务器(Remote),可以解决同样的问题。然后无需更改etc / hosts文件
编辑后conf/regionservers
将如下所示:
localhost
ip address of the remote hbase server
例如
localhost
10.132.258.366
答案 3 :(得分:0)
与HBase 1.1.3完全相同的问题。 2个虚拟机(Ubuntu)在同一网络上。日志显示客户端可以访问Zookeeper但不能访问HBase服务器。
TL; DR:删除服务器上/etc/hosts
中的以下行( server_hostame ):
127.0.1.1 server_hostname server_hostname
并在(本地)网络上添加127.x.y.z
服务器的IP:
192.x.y.z server_hostname
我在客户端和服务器端尝试了很多组合。在独立模式下,我认为没有更好的方法。 并不为此感到骄傲。遗憾的是必须弄乱网络配置,甚至不能提供能够远程连接到服务器的HBase shell客户端(欢迎来到Java幻想世界......)
在服务器端,将文件conf/hbase-site.xml
留空。您不需要在这里放置Zookeeper配置,默认设置就可以了。
etc/regionservers
也是如此。保留默认条目( localhost ),因为我不认为它是真正关心的独立模式(我试图将server_hostname
放入其中,当然这不起作用)。
在客户端,如果要使用它解析它必须通过主机名知道服务器,那么再次在服务器的/etc/hosts
客户端文件中添加一个条目。
作为奖励,我为客户提供了sbt
配置和一些完整工作代码,因为HBase团队似乎已经花费了过去4年在维加斯的文档预算(再次欢迎Java / Scala的“商业准备”世界。
build.sbt :
libraryDependencies ++= Seq(
...
"org.apache.hadoop" % "hadoop-core" % "1.2.1",
"org.apache.hbase" % "hbase" % "1.1.2",
"org.apache.hbase" % "hbase-client" % "1.1.2",
)
some_client_code.scala :
import org.apache.hadoop.hbase.HBaseConfiguration
import org.apache.hadoop.hbase.client.{HTable, Put, HBaseAdmin}
import org.apache.hadoop.hbase.util.Bytes
val hbaseConf = HBaseConfiguration.create()
hbaseConf.set("hbase.zookeeper.quorum", "server_hostname")
HBaseAdmin.checkHBaseAvailable(hbaseConf)
val table = new HTable(hbaseConf, "my_hbase_table")
val put = new Put(Bytes.toBytes("row_key"))
put.add(Bytes.toBytes("cf"), Bytes.toBytes("colId1"), Bytes.toBytes("foo"))
答案 4 :(得分:0)
我知道回答这个问题为时已晚,但我想分享一下解决类似问题的方法。
我有同样的问题,我尝试从java程序设置zookeeper仲裁,也尝试通过CLI但没有一个工作。
我正在使用CDH 5.7.7和HBase 1.1.0版 最后,我必须将少量配置导出到Hadoop类路径以解决问题。这是我导出的配置。
export HADOOP_CLASSPATH=/etc/hadoop/conf:/usr/share/cmf/lib/cdh5/hbase-protocol-0.98.1-cdh5.5.0.jar:/etc/hbase/conf:/driven/conf
希望这有帮助。