hbase中清空整张表的数据

hbase(main):005:0> truncate 'fr:test'
Truncating 'FaceBase' table (it may take a while):
 - Disabling table...
 - Dropping table...
 - Creating table...

0 row(s) in 14.4220 seconds

truncate是disable、drop、create三个动作的自动化集成。

原文地址:https://www.cnblogs.com/royfans/p/7195097.html