我的开发环境是Hadoop 2.6.0 HBase 0.98.10.1-hadoop2 titan 0.5.3
我试图通过
打开一个连接 conf = new BaseConfiguration();
conf.setProperty("storage.backend","hbase");
conf.setProperty("storage.hostname","127.0.0.1");
conf.setProperty("storage.hbase.ext.hbase.zookeeper.property.clientPort","2181")
conf.setProperty("storage.hbase.table","smart_titan")
g = TitanFactory.open(conf);
之后shell没有释放控件, 我验证了zookeeper日志,一切看起来都是正常的会话建立。
关于此的任何指示...... !!!
答案 0 :(得分:0)
想出了问题,默认情况下,titan建立了与znode / hbase的连接
设置此属性已解决问题。
conf.setProperty("storage.hbase.ext.zookeeper.znode.parent","/hbase-unsecure")