LOG.info("End: " + end);
try {
DataInput indexInput;
if (inputSplit instanceof AegIndexedSplit) {
AegIndexedSplit indexedSplit = (AegIndexedSplit) inputSplit;
indexInput = new DataInputStream(indexedSplit.getIndexInput(ctx.getConfiguration()));
scanner = new IndexedSSTableScanner(is, end, Descriptor.fromFilename(filename).version, indexInput);
} else {
scanner = new SSTableColumnScanner(is, end, Descriptor.fromFilename(filename).version);
}
LOG.info("skipping to start: " + start);