hbase-site.xml 中
property>
2.bin/startup-hbase.sh ,启动
3. 在window 上,同样的 hbase-site.xml , 用 bin/hbase shell --->list , ok
4. 在 eclipse 中建立项目,hbase : code a junit test
public class F1 extends HBaseTestCase{
public void testT() throws IOException{
HBaseConfiguration config = new HBaseConfiguration();
HTable table = new HTable(config, "t1");
byte [] row = Bytes.toBytes("row");
BatchUpdate batchUpdate = new BatchUpdate(row);
byte[] value = "value".getBytes("utf-8");
batchUpdate.put("f1:", value);
table.commit(batchUpdate);
}
}
5. ok.
继续探索 hbase 适用的场景