当前位置:   article > 正文

HBase常用命令_hbase更新数据

hbase更新数据

一、基础

1、Hbase表结构

在这里插入图片描述

2、进入Hbase shell

> hbase shell
  • 1

3、查看当前操作用户

> whoami
  • 1

二、表的操作

1、查看当前数据库中有哪些表

hbase(main):001:0> list 
  • 1

2、创建表

hbase(main):002:0> create 'student','info' 
  • 1

3、插入数据到表

hbase(main):003:0> put 'student','1001','info:sex','male' 
hbase(main):004:0> put 'student','1001','info:age','18' 
hbase(main):005:0> put 'student','1002','info:name','Janna' 
hbase(main):006:0> put 'student','1002','info:sex','female' 
hbase(main):007:0> put 'student','1002','info:age','20' 
  • 1
  • 2
  • 3
  • 4
  • 5

4、扫描查看表数据

# 查询表中所有的记录
hbase(main):008:0> scan 'student' 
# 只查看某一列的数据
hbase(main):009:0> scan 'student',{{COLUMN=>'info:name'}} 
# 只查看某一列族的数据
hbase(main):010:0> scan 'student',{STARTROW => 'info'} 
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6

5、查看表结构

hbase(main):011:0> describe ‘student’ 
  • 1

6、更新指定字段的数据

hbase(main):012:0> put 'student','1001','info:name','Nick' 
hbase(main):013:0> put 'student','1001','info:age','100' 
  • 1
  • 2

7、查看“指定行”或“指定行:列族”的数据

# 通过Row key查询记录
# get 表名 Row key
hbase(main):014:0> get 'student','1001' 
# 通过Row key和列族查询数据
hbase(main):015:0> get 'student','1001','info' 
# 通过Row key,列族:列查询数据
hbase(main):016:0> get 'student','1001','info:name' 
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7

8、统计表数据行数

hbase(main):017:0> count 'student' 
  • 1

9、删除数据

(1)删除某 rowkey 的全部数据:

hbase(main):018:0> deleteall 'student','1001' 
  • 1

(2)删除某 rowkey 的某一列数据:

hbase(main):019:0> delete 'student','1002','info:sex' 
  • 1

10、清空表数据

hbase(main):020:0> truncate 'student' 
# 注意:清空表的操作顺序为先 disable,然后再 truncate。
  • 1
  • 2

11、删除表

# 首先需要先让该表为 disable 状态:
hbase(main):021:0> disable 'student' 
# 然后才能 drop 这个表:
hbase(main):022:0> drop 'student' 
# 注意:如果直接 drop 表,会报错:ERROR: Table student is enabled. Disable it first. 
  • 1
  • 2
  • 3
  • 4
  • 5
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/煮酒与君饮/article/detail/797893
推荐阅读
相关标签
  

闽ICP备14008679号