cd hbase-0.90.4
配置一个目录
现在你已经可以启动Hbase了。但是你可能需要先编辑 conf/hbase-site.xml
去配置hbase.rootdir
,来选择Hbase将数据写到哪个目录 .
<?xml version="1.0"?> <?xml-stylesheet type="text/xsl" href="configuration.xsl"?> <configuration> <property> <name>hbase.rootdir</name> <value>file:///DIRECTORY/hbase</value> </property> </configuration>
将 DIRECTORY
替换成你期望写文件的目录. 默认 hbase.rootdir
是指向 /tmp/hbase-${user.name}
,也就说你会在重启后丢失数据(重启的时候操作系统会清理/tmp
目录)
我配置到 只要指定到一个目录下就可以,这个目录是用来保存创建表记录。
<value>/home/liucheng/hbase0.90.4/hbase</value>
参看http://www.yankay.com/wp-content/hbase/book.html
然后编辑conf/hbase-env.sh
,将其中的JAVA_HOME
指向到你Java的安装目录。
现在启动Hbase:
$ ./bin/start-hbase.sh starting Master, logging to logs/hbase-user-master-example.org.out
用shell连接你的Hbase 这个时候 估计 需要 30秒左右,不要 以为死了 关闭了。
$ ./bin/hbase shell HBase Shell; enter 'help<RETURN>' for list of supported commands. Type "exit<RETURN>" to leave the HBase Shell Version: 0.90.0, r1001068, Fri Sep 24 13:55:42 PDT 2010 hbase(main):001:0>
在创建表时 出现
具体 方式:
vi /etc/security/limits.conf参考 http://blog.csdn.net/god_wot/article/details/6829427
Hbase 的基础命令语法 可以参考 http://blog.csdn.net/scutshuxue/article/details/6988348
第一步:新建一个学生表,只有两列,一列是name,一列是address.
create 'stu',{name=>'name'},{name=>'address'};
同时显示一下,list
第二步:向学生表添加一列数据,
put 'stu','row1','name:1','zs';
第三步:查看一下,建表语句,
describe 'stu'
第四步:查看一下表内容 scan 'stu'
第五步:通过key 获取一行数据。
get 'stu','row1'
注:如果在一个表中,列族相同,第二个列就会覆盖第一个列。
结束,删除表。
ERROR: org.apache.hadoop.hbase.ZooKeeperConnectionException: HBase is able to connect to ZooKeeper but the connection closes immediately. This could be a sign that the server has too many connections (30 is the default). Consider inspecting your ZK server logs for that error and then make sure you are reusing HBaseConfiguration as often as you can. See HTable's javadoc for more information.