Hbase 简明教程
HBase - General Commands
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'…...