hbase shell 基本命令
时间: 2023-10-01 11:10:36 浏览: 104
Hbase 的shell基本操作
5星 · 资源好评率100%
HBase Shell 是 HBase 自带的交互式命令行工具,可以通过命令行方式对 HBase 进行操作。以下是 HBase Shell 的一些基本命令:
1. help:获取命令列表或者某个命令的使用帮助。
2. status:获取 HBase 集群的状态信息。
3. create 'table_name', 'column_family':创建表,其中 column_family 可以有多个。
4. list:列出 HBase 中所有的表。
5. describe 'table_name':查看表的描述信息。
6. put 'table_name', 'row_key', 'column_family:column_name', 'value':向表中插入数据。
7. get 'table_name', 'row_key':从表中获取指定行数据。
8. scan 'table_name':扫描表中所有数据。
9. delete 'table_name', 'row_key', 'column_family:column_name':删除表中指定行、列的数据。
10. disable 'table_name':禁用表。
11. enable 'table_name':启用表。
12. drop 'table_name':删除表。
以上是 HBase Shell 的一些基本命令,更多命令可以通过 help 命令查看。
阅读全文