hbase shell基本命令语法:create , {NAME => , VERSIONS => } 例如:创建表t1,有两个family name:f1,f2,且版本数均为2语法:describe 例如:查看表t1的结构
1.进入hbase shell console$HBASE_HOME/bin/hbase shell1)查看当前用户hbase(main)> whoami2.表的管理1)查看有哪些表hbase(main)> list2)创建表语法:create , {NAME => , VERSIONS => }例如:创建表t1,有两个family name:f1,f2,且版本数均为2hbase(main)> create ‘t1’,{NAM