for (int i = 0; i < NUM_ROWS; i++) {
long id = table.startUpdate(new Text("row_" + String.format("%1$05d", i)));
table.put(id, TEXT_COLUMN1, VALUE);
table.put(id, TEXT_COLUMN2, String.format("%1$05d", i).getBytes());
table.commit(id);
}
// LOG.info("Print table contents using scanner before map/reduce for " + TABLE_NAME);
// scanTable(TABLE_NAME, false);
// LOG.info("Print table contents using scanner+filter before map/reduce for " + TABLE_NAME);