HBase計數和截斷

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'

下面給出是 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