HLog hlog = new HLog(fs, hlogPath, oldPath, hConf);
HRegion region = new HRegion(tablePath, hlog, fs, hConf, new HRegionInfo(Bytes.toBytes(tableName)), htd,
new MockRegionServerServices());
try {
region.initialize();
TransactionStateCache cache = new TransactionStateCacheSupplier(hConf).get();
LOG.info("Coprocessor is using transaction state: " + cache.getLatestState());
for (int i = 1; i <= 8; i++) {
for (int k = 1; k <= i; k++) {
Put p = new Put(Bytes.toBytes(i));