HBase学习&实践笔记之HBase初探(to be continued...)

HBase初探 To be continued...

HBase架构

HBase学习&实践笔记之HBase初探(to be continued...)

HBASE的逻辑&物理存储结构

HBase学习&实践笔记之HBase初探(to be continued...)

启动HBase

HBase version: 1.2.6
Hadoop version: 3.0.0

伪分布式启动

hbasedir/conf/hbase-env.xml配好JAVA_HOME。

export JAVA_HOME=$(/usr/libexec/java_home)

我做了几个系统宏,方便命令执行。

alias starthbase='sudo /Users/fujianbo/Applications/hbase-1.2.6/bin/start-hbase.sh'
alias stophbase='sudo /Users/fujianbo/Applications/hbase-1.2.6/bin/stop-hbase.sh'
alias startresthbase='sudo /Users/fujianbo/Applications/hbase-1.2.6/bin/hbase rest start'
alias hbaseshell='sudo /Users/fujianbo/Applications/hbase-1.2.6/bin/hbase shell'

伪分布式启动下,不需要开启zookeeper相关配置,否则在启动hbase控制台时会报错:

ERROR [main] zookeeper.RecoverableZooKeeper: ZooKeeper exists failed after {N} attempts

分布式启动

DDL: 在控制台执行

Let's move! starthbase -> hbaseshell, 启动hbase并进入hbase控制台。

使用"put 'user','row1','info:name','jianbo'"命令往user表里插入一条rowkey='row1', value='jianbo'的纪录:
HBase学习&实践笔记之HBase初探(to be continued...)

对于同一个rowkey,第二次put操作被认为是更新操作:
HBase学习&实践笔记之HBase初探(to be continued...)

使用"get [tablename],[rowkey],[column family]"命令查询数据:
HBase学习&实践笔记之HBase初探(to be continued...)

使用"disable [tablename]"命令失效表(注:非物理删除),表失效后已不能新增或者查询数据。
HBase学习&实践笔记之HBase初探(to be continued...)

HBase学习&实践笔记之HBase初探(to be continued...)

使用"enable [tablename]"生效已被失效的表,"drop [tablename]"物理删除表。

使用"describe [tablename]"查看表结构。
HBase学习&实践笔记之HBase初探(to be continued...)

  • 使用list命令查看"本地"数据库信息:
    HBase学习&实践笔记之HBase初探(to be continued...)

使用"scan [tablename]"全表扫描数据:
HBase学习&实践笔记之HBase初探(to be continued...)

使用"deleteall [tablename],[rowkey]"删除整行数据:
HBase学习&实践笔记之HBase初探(to be continued...)

使用"truncate [tablename]"删除指定表的所有数据:
HBase学习&实践笔记之HBase初探(to be continued...)

其他系统命令

  • 【查看连接hbase的用户信息】whoami
    HBase学习&实践笔记之HBase初探(to be continued...)
上一篇:谈谈我对Exception和Error的理解(未完)


下一篇:JVM学习系列:了解JVM options参数配置 & 看懂GC日志