Hbase 简明教程

HBase - Count & Truncate

count

您可以使用 count 命令计算表的行数。它的语法如下:

count ‘<table name>’

删除第一行后,emp 表将有两行。如下所示进行验证。

hbase(main):023:0> count 'emp'
2 row(s) in 0.090 seconds
⇒ 2

truncate

此命令禁用删除并重新创建表。 truncate 的语法如下:

hbase> truncate 'table name'

Example

下面给出了 truncate 命令的示例。在这里我们截断了 emp 表。

hbase(main):011:0> truncate 'emp'
Truncating 'one' table (it may take a while):
   - Disabling table...
   - Truncating table...
   0 row(s) in 1.5950 seconds

截断表后,使用 scan 命令进行验证。您将得到一个零行的表。

hbase(main):017:0> scan ‘emp’
ROW                  COLUMN + CELL
0 row(s) in 0.3110 seconds