Mutation m = new Mutation(new Text("somerow"));
m.put(new Text("cf" + i), new Text("cq" + i), new Value(("value" + i).getBytes()));
all.add(m.toThrift());
}
List<TabletMutations> updates = new ArrayList<TabletMutations>();
updates.add(new TabletMutations(13, 3, all));
writer.logManyTablets(null, logFile.id, updates);
writer.close(null, logFile.id);
SequenceFile.Reader dis = readOpen(logFile);
LogFileKey key = new LogFileKey();
LogFileValue value = new LogFileValue();