非集群client访问HBase方法

对HBase的操作,有时候需要不在集群内部,也就是说A、B、C三台主机构建HBase,现在需要主机D来操作HBase。

client是通过Zookeeper来访问HBase的,而Zookeeper通过DNS解析主机名来访问ip,通过以下两步就可以用主机D来操作HBase

把client的hosts上添加A,B,C的主机名和ip(linux是/etc/hosts,windows是c:\windows\system32\drivers\hosts)

在程序中写入:

conf = HBaseConfiguration.create();
conf.set(“hbase.zookeeper.quorum”,  “192.168.0.180″);
conf.set(“hbase.zookeeper.property.clientPort”,  “3355″);

内容版权声明:除非注明,否则皆为本站原创文章。

转载注明出处:http://www.heiqu.com/84ca223ca24dbeec9bc0cc46f97ba77c.html