大象教程
首页
Spark
Hadoop
HDFS
MapReduce
Hive
HBase 教程
HBase 教程
HBase 体系结构
HBase 安装
HBase Shell
HBase 通用命令
HBase 管理员 API
HBase 创建表
HBase 列出表
HBase 禁用表
HBase 启用表
HBase 表描述和更改
HBase 验证表是否存在(exist命令)
HBase 删除表
HBase 关闭
HBase 客户端 API
HBase 创建(插入)数据
HBase 更新数据
HBase 读取数据
HBase 删除数据
HBase 扫描(scan)
HBase 计数(count)和截断(truncate)
HBase 安全
#HBase 计数(count)和截断(truncate) ##count(计数) 您可以使用count命令来计数表的行数。其语法如下: ```bash count '
' ``` 删除第一行后,emp表将具有两行。如下所示进行验证。 ```bash hbase(main):023:0> count 'emp' 2 row(s) in 0.090 seconds ⇒ 2 ``` ##truncate(截断) 此命令禁用删除并重新创建表。`truncate`的语法如下: ```bash hbase> truncate 'table name' ``` 下面给出的是truncate命令的示例。在这里,我们已经截断了emp表。 ```bash 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命令进行验证。您将获得一个零行的表。 ```bash hbase(main):017:0> scan 'emp' ROW COLUMN + CELL 0 row(s) in 0.3110 seconds ```
加我微信交流吧