大象教程
首页
Spark
Hadoop
HDFS
MapReduce
Hive
HBase 教程
HBase 教程
HBase 体系结构
HBase 安装
HBase Shell
HBase 通用命令
HBase 管理员 API
HBase 创建表
HBase 列出表
HBase 禁用表
HBase 启用表
HBase 表描述和更改
HBase 验证表是否存在(exist命令)
HBase 删除表
HBase 关闭
HBase 客户端 API
HBase 创建(插入)数据
HBase 更新数据
HBase 读取数据
HBase 删除数据
HBase 扫描(scan)
HBase 计数(count)和截断(truncate)
HBase 安全
#HBase 通用命令 HBase中的常规命令是status,version,table_help和whoami。本章介绍这些命令。 ##status 此命令返回系统状态,包括系统上运行的服务器的详细信息。其语法如下: ```bash hbase(main):009:0> status ``` 如果执行此命令,它将返回以下输出。 ```bash hbase(main):009:0> status 3 servers, 0 dead, 1.3333 average load ``` ##version 该命令返回系统中使用的HBase版本。其语法如下: ```bash hbase(main):010:0> version ``` 如果执行此命令,它将返回以下输出。 ```bash hbase(main):009:0> version 2.4.0, r282ab70012ae843af54a6779543ff20acbcbb629, Thu Dec 3 09:58:52 PST 2020 ``` ##table_help 该命令指导您如何以及如何使用表引用的命令。下面给出的是使用此命令的语法。 ```bash hbase(main):02:0> table_help ``` 使用此命令时,它将显示与表相关的命令的帮助主题。下面给出的是此命令的部分输出。 ``` Help for table-reference commands. You can either create a table via 'create' and then manipulate the table via commands like 'put', 'get', etc. See the standard help information for how to use each of these commands. However, as of 0.96, you can also get a reference to a table, on which you can invoke commands. For instance, you can get create a table and keep around a reference to it via: hbase> t = create 't', 'cf'…... ``` ##whoami 该命令返回HBase的用户详细信息。如果执行此命令,则返回当前的HBase用户,如下所示。 ```bash hbase(main):008:0> whoami hadoop (auth:SIMPLE) groups: hadoop ```
加我微信交流吧