HBase shell窗口进入,执行命令hbase shell
HBase表的创建
语法:create <table>, {NAME => <family>, VERSIONS => <VERSIONS>}
例如:创建表t1,有两个family name:f1,f2,且版本数前者为3,后者为1
hbase(main)> create 't1',{NAME => 'f1', VERSIONS => 3},{NAME => 'f2', VERSIONS => 1}
HBase表的删除
disable表
drop表
hbase(main)> disable 't1'
hbase(main)> drop 't1'
HBase表的清空
hbase(main)> truncate 't1'
网友评论