// insert this batch of tuples
if (table.getRowCount() >= YCSBConstants.BATCH_SIZE) {
loadVoltTable(YCSBConstants.TABLE_NAME, table);
total.addAndGet(table.getRowCount());
table.clearRowData();
if (debug.val)
LOG.debug(String.format("[%d] Records Loaded: %6d / %d",
thread_id, total.get(), init_record_count));
}
} // FOR