hadoop1.1.2集成hbase-0.94.23

lib下拷贝hadoop的hadoop-core-1.1.2.jar文件,删除原来文件

hbase-env.sh

export JAVA_HOME=/opt/jdk1.6.0_12/
export HBASE_MANAGES_ZK=false

 

hbase-site.xml

<?xml version="1.0"?> 
<?xml-stylesheet type="text/xsl" href="configuration.xsl"?> 
<configuration> 
<property> 
<name>hbase.rootdir</name> 
<value>hdfs://localhost:9000/hbase</value> 
</property> 
<property> 
<name>hbase.cluster.distributed</name> 
<value>true</value> 
</property> 
</configuration>

 

启动

bin/start-hbase.sh

 

进入shell

 bin/hbase shell

 

//建表,表名、列族

hbase(main):002:0> create 'tab1','fam1'

//列出所有的表

hbase(main):003:0> list

//插表,表名、行名、列族:列名、值

hbase(main):004:0> put 'tab1','row1','fam1:col1','val1'

//查看表中的信息

hbase(main):007:0> scan 'tab1'

//get指令获取表中的一行数据

hbase(main):008:0> get 'tab1','row2'

//delete删除一行数据

hbase(main):009:0> delete 'tab1','row2','fam1:col2'

//删除表

hbase(main):011:0> disable 'tab1'

hbase(main):012:0> drop 'tab1'

你可能感兴趣的:(hadoop1.1.2集成hbase-0.94.23)