hbase2.0利用协处理器(coprocessor)统计行数

一、启动协处理器

在hbase集群环境中,在hbase-site.xml配置文件中添加属性信息如下:

<property>
   <name>hbase.coprocessor.user.region.classes</name>
   <value>org.apache.hadoop.hbase.coprocessor.AggregateImplementation</value>
 </property>

二、实现代码如下:

1)初始化连接

//初始化连接
    public static void init() throws IOException {
        config = HBaseConfiguration.create();
        config.set("hbase.zookeeper.quorum","192.168.21.28");
        config.set("hbase.zookeeper.property.clientPort", "2181");
        config.set("hbase.master", "192.168.21.28:60010");
        //使用配置创建一个连接
        conn = ConnectionFactory.createConnection(config);
        admin = (HBaseAdmin) conn.getAdmin();//得到管理员
    }

2)统计行数

public  static long  rowCount(String tablename){
        long rowCount = 0;
        try {
            init();
            TableName name=TableName.valueOf(tablename);
            //先disable表,添加协处理器后再enable表
            admin.disableTable(name);
            TableDescriptor tableDescriptor = admin.getDescriptor(name);
            String coprocessorClass = "org.apache.hadoop.hbase.client.coprocessor.AggregationClient";
            if (! tableDescriptor.hasCoprocessor(coprocessorClass)) {
                tableDescriptor.getCoprocessorDescriptors();
            }
            admin.modifyTable(name, tableDescriptor);
            admin.enableTable(name);
            //计时
            StopWatch stopWatch = new StopWatch();
            stopWatch.start();
            Scan scan = new Scan();
            AggregationClient aggregationClient = new AggregationClient(config);
            rowCount = aggregationClient.rowCount(name, new LongColumnInterpreter(), scan);
            System.out.println("RowCount: " + rowCount);
            stopWatch.stop();
            System.out.println("统计耗时:" +stopWatch.now(TimeUnit.SECONDS) +"s");
        } catch (Throwable e) {
            e.printStackTrace();
        }
        return rowCount;
    }

三、对比hbase shell统计方式

1)shell方式:

2)协处理器方式:

评论 11
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值