2010年6月28日月曜日

HBase0.89.20100621を入れてみた。

どうも接続方法が変わったのか、何か変更があったご様子。
取り敢えず下記のように変更したら繋がった


import java.io.IOException;
import org.apache.hadoop.conf.Configuration;
import org.apache.hadoop.hbase.client.HTable;

public class HBaseNewConnector {
private Configuration conf;
private HTable hTable;

public void run() {
this.conf = new Configuration();
this.conf.set("hbase.zookeeper.quorum", "192.168.0.2"); ←取り敢えずMasterのIP
this.conf.set("hbase.zookeeper.property.clientPort", "2181");
try {
this.hTable = new HTable(this.conf, "Pokemon");
} catch (IOException e) {
e.printStackTrace();
}
try {
this.hTable.close();
} catch (IOException e) {
e.printStackTrace();
}
}
}

0 件のコメント: