HBase操作

创建表 【HBase操作】create 'tempTable', 'f1', 'f2', 'f3'
向单元格添加数据 put 'tempTable', 'r1', 'f1:c1', 'hello'
浏览表相关信息 scan 'tempTable'
获取数据 get 'tempTable', 'r1', {COLUMN=>'f1:c1'}
禁用表 disable 'tempTable'
删除表 drop 'tempTable'

    推荐阅读