Row row = new Row();
row.setId(Integer.toString(i));
Record record = new Record();
record.setRecordId(Integer.toString(i));
record.setFamily("test");
record.addToColumns(new Column("test", Integer.toString(i)));
row.addToRecords(record);
RowMutation rowMutation = BlurUtil.toRowMutation(table, row);
rowMutation.setWal(false);
client.mutate(rowMutation);
}