Configuration conf = HBaseConfiguration.create();
conf.set("hbase.zookeeper.quorum", zkConnectionString);
HTableInterface table = new HTable(conf, tableName);
// Type manager
zk = new StateWatchingZooKeeper(zkConnectionString, zkSessionTimeout);
typeMgr = new HBaseTypeManager(idGenerator, conf, zk, new HBaseTableFactoryImpl(conf));
Get get = new Get(recordId.toBytes());
get.setMaxVersions();
Result row = table.get(get);