2019-02-14

hbase

第一步:创建表helloworld

第二步:实现方法:


第三步:打包

第四步:hbase shell 针对helloworld表alter

先disable 'helloworld'

再执行:alter 'helloworld', METHOD => 'table_att', 'coprocessor' => '/tmp/helloworld/helloworld-1.0-SNAPSHOT.jar|HelloWorld||'

/tmp/helloworld/helloworld-1.0-SNAPSHOT.jar  jar包在hdfs的路径

HelloWorld  类名

最后一步:enable 'helloworld'


你可能感兴趣的:(2019-02-14)