创建表
create 'tempTable', 'f1', 'f2', 'f3'
向单元格添加数据
put 'tempTable', 'r1', 'f1:c1', 'hello'
浏览表相关信息
scan 'tempTable'
获取数据
get 'tempTable', 'r1', {COLUMN=>'f1:c1'}
禁用表
disable 'tempTable'
删除表
drop 'tempTable'
create 'tempTable', 'f1', 'f2', 'f3'
put 'tempTable', 'r1', 'f1:c1', 'hello'
scan 'tempTable'
get 'tempTable', 'r1', {COLUMN=>'f1:c1'}
disable 'tempTable'
drop 'tempTable'
本文标题:HBase操作
本文链接:https://www.haomeiwen.com/subject/nycyyqtx.html
网友评论