Observe-secretly/HbaseGUI

不支持aliyun hbase增强版配置

Closed this issue · 3 comments

public Configuration hbaseConfiguration() {
        Configuration conf = HBaseConfiguration.create();

        // 将HBase底层Connection实现替换成HBase增强版专用的AliHBaseUEConnection
        conf.set("hbase.client.connection.impl", AliHBaseUEConnection.class.getName());

        // 集群的连接地址(注意公网地址和VPC内网地址)
        conf.set("hbase.client.endpoint", endpoint);

        conf.set("hbase.client.username", username);
        conf.set("hbase.client.password", password);

        return conf;
    }

请问可以支持这种连接方式吗?

我抽空看看。如果改造量不大。可以考虑支持

多谢作者, 改造量应该不大. 现在一直没有gui可以用, 烦得很.

有个消息告诉你,Hbase增强版实例中,阿里云在控制台页面的集群管理里面增加了集群管理 UI。这是阿里云自己开发的,里面支持SQL查询。我这里暂不做支持了。感谢使用和反馈