HTable table = util.createTable(tname, FAMILY_NAME);
HBaseAdmin admin = new HBaseAdmin(conf);
admin.disableTable(tname);
util.createMultiRegions(conf, table, FAMILY_NAME,
generateRandomStartKeys(5));
admin.enableTable(tname);
} else if ("incremental".equals(args[0])) {
byte[] tname = args[1].getBytes();
HTable table = new HTable(conf, tname);
Path outDir = new Path("incremental-out");
runIncrementalPELoad(conf, table, outDir);