hbase入门

hbase 1.2.5 

单节点伪分布式,数据存储在hdfs 上 

http://hbase.apache.org/book.html#quickstart

后面也有测试的练习

主要配置

hbase-env.sh中配置JAVA_HOME

hbase-site.xml中配置*(注意和自己的hfds的端口要一致)

<property>
  <name>hbase.cluster.distributed</name>
  <value>true</value>
</property>
 

<property>
  <name>hbase.rootdir</name>
  <value>hdfs://localhost:8020/hbase</value>
</property>

启动

  start-dfs.sh 

-- bin/start-hbase.sh
-- bin/hbase shell
测试
hbase(main):001:0> create 'test', 'cf'
 
 

hbase(main):002:0> list 'test'
 

hbase(main):003:0> put 'test', 'row1', 'cf:a', 'value1'
0 row(s) in 0.0850 seconds

hbase(main):004:0> put 'test', 'row2', 'cf:b', 'value2'
0 row(s) in 0.0110 seconds

hbase(main):005:0> put 'test', 'row3', 'cf:c', 'value3'
0 row(s) in 0.0100 seconds
 
hbase(main):006:0> scan 'test'

 

hive中构建dual虚表

Hive日期格式转换用法

posted @ 2017-07-19 13:31  牵牛花  阅读(152)  评论(0编辑  收藏  举报