启动Shell $ hbase shell
列出所有的表 hbase > list
创建名为mytable的表,含有一个列族hb hbase > create 'mytable' , 'hb'
在‘mytable’表的'first'行中的‘hb:data’列对应的数据单元中插入字节数组‘hello HBase’
hbase > put 'mytable' , 'first' , 'hb:data' , 'hello HBase'
put 'mytable' , 'first' , 'hb:name' , 'whq'
put 'mytable' , 'second' , 'hb:name' , 'whq2'
put 'mytable' , 'second' , 'hb:data' , 'hello my test'
更新数据
put 'mytable' , 'second' , 'hb:data' , 'hello my update'
读取mytable表 ‘first’行的内容 hbase > get 'mytable' , 'first'
get 'mytable' , 'second'
读取mytable表所有的内容 hbase > scan 'mytable'
删除mytable表 ‘first’行 hbase> delete 'mytable' , 'first'