HBase协处理器

协处理器官方介绍

https://blogs.apache.org/hbase/entry/coprocessor_introduction

 

Endpoint

1.修改配置文件conf/hbase-site.xml

 

<property>

<name>hbase.coprocessor.region.classes</name>

<value>org.apache.hadoop.hbase.coprocessor.AggregateImplementation</value>

</property>

2.修改hbase表,开启协处理器功能

alter 't1', METHOD => 'table_att', 'coprocessor'=>'hdfs:///foo.jar|com.foo.FooRegionObserver|1001|arg1=1,arg2=2'

 

 

你可能感兴趣的:(hbase)