连接到 HBase

如果要连接到 HBase 服务器,首先需要确保服务器的 IP 位于/ etc / hosts 文件中,例如添加行

255.255.255.255    hbase

然后你可以使用 Java API 连接到 zookeeper,你只需指定客户端端口和 zookeeper 地址

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

配置连接后,你可以使用它进行测试

HBaseAdmin.checkHBaseAvailable(config);

如果你的 HBase 配置有问题,将引发异常。

最后连接到服务器,只需使用

Connection connection = ConnectionFactory.createConnection(config);