用hbase shell命令创建表
时间: 2023-04-29 07:02:01 浏览: 120
hbase的shell操作
使用HBase Shell命令创建表的步骤如下:
1. 打开HBase Shell:在终端输入hbase shell命令并回车。
2. 创建表:使用create命令创建表,语法如下:
create '表名', '列族1', '列族2', ...
例如,创建一个名为student的表,包含两个列族info和score,命令如下:
create 'student', 'info', 'score'
3. 查看表:使用list命令查看已创建的表,语法如下:
list
4. 退出HBase Shell:使用exit命令退出HBase Shell,语法如下:
exit
以上就是使用HBase Shell命令创建表的步骤。
阅读全文