- HBase 教程
- HBase - 首页
- HBase - 概述
- HBase - 架构
- HBase - 安装
- HBase - Shell
- HBase - 常规命令
- HBase - 管理 API
- HBase - 创建表
- HBase - 列出表
- HBase - 禁用表
- HBase - 启用表
- HBase - 描述和更改
- HBase - 存在
- HBase - 删除表
- HBase - 关闭
- HBase - 客户端 API
- HBase - 创建数据
- HBase - 更新数据
- HBase - 读取数据
- HBase - 删除数据
- HBase - 扫描
- HBase - 计数和截断
- HBase - 安全
- HBase 资源
- HBase - 问答
- HBase - 快速指南
- HBase - 有用资源
HBase - 常规命令
HBase 中的常规命令为状态、版本、table_help 和 whoami。本章将解释这些命令。
status
此命令返回系统状态,包括在系统上运行的服务器的详细信息。其语法如下
hbase(main):009:0> status
如果您执行此命令,它将返回以下输出。
hbase(main):009:0> status 3 servers, 0 dead, 1.3333 average load
version
此命令返回系统中使用的 HBase 版本。其语法如下
hbase(main):010:0> version
如果您执行此命令,它将返回以下输出。
hbase(main):009:0> version 0.98.8-hadoop2, r6cfc8d064754251365e070a10a82eb169956d5fe, Fri Nov 14 18:26:29 PST 2014
table_help
此命令将指导您如何使用表引用命令。以下是使用此命令的语法。
hbase(main):02:0> table_help
当您使用此命令时,它将显示与表相关的命令的帮助主题。以下是此命令的部分输出。
hbase(main):002: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 用户,如下所示。
hbase(main):008:0> whoami hadoop (auth:SIMPLE) groups: hadoop
广告