hbase shell命令
时间: 2023-10-27 13:07:45 浏览: 84
hbase-shell批量命令执行脚本的方法
HBase是一个面向列的分布式数据库,它可以在大规模数据集上提供实时随机访问。HBase shell是HBase提供的一个命令行界面工具,它可以让用户通过命令行与HBase进行交互。
以下是一些常用的HBase shell命令:
1.创建表
create 'table_name', 'column_family_1', 'column_family_2', ...
例:create 'student', 'info', 'score'
2.列出所有表
list
3.查看表结构
describe 'table_name'
4.插入数据
put 'table_name', 'rowkey', 'column_family:column', 'value'
例:put 'student', '001', 'info:name', 'Tom'
5.查询数据
get 'table_name', 'rowkey'
例:get 'student', '001'
6.扫描表
scan 'table_name'
7.删除数据
delete 'table_name', 'rowkey', 'column_family:column'
例:delete 'student', '001', 'info:name'
8.删除表
disable 'table_name'
drop 'table_name'
以上是一些常用的HBase shell命令,更多命令可以通过help命令查询。
阅读全文