Chinaunix首页 | 论坛 | 博客
  • 博客访问: 651059
  • 博文数量: 149
  • 博客积分: 3901
  • 博客等级: 中校
  • 技术积分: 1558
  • 用 户 组: 普通用户
  • 注册时间: 2009-02-16 14:33
文章分类

全部博文(149)

文章存档

2014年(2)

2013年(10)

2012年(32)

2011年(21)

2010年(84)

分类:

2010-08-24 18:26:16


下载 :  hbase 0.20 


hadoop 搭建好后 :
  cp  到  /data/app/hadoop-0.20.2/contrib/hbase


修改 hbase-site.xml

<configuration>
    <property>
      <name>hbase.master</name>
      <value>localhost:60000</value>
    </property>


    <property>
      <name>hbase.rootdir</name>
      <value>hdfs://master:9000/hbase</value>
    </property>
</configuration>



启动 :
/data/app/hadoop-0.20.2/contrib/hbase/bin/start-hbase.sh 



/data/app/hadoop-0.20.2/contrib/hbase/bin/hbase shell
> create 't1', {NAME => 'f1', VERSIONS => 5}
> put 't1', "test\xef\xff", 'f1:', "\x01\x33\x40"
get 't1', "test\xef\xff"   
COLUMN                       CELL                                               
f1:                         timestamp=1282643907536, value=\x013@

                                      

阅读(811) | 评论(0) | 转发(0) |
给主人留下些什么吧!~~