Examples of AegIndexedSplit


Examples of com.netflix.aegisthus.columnar_input.splits.AegIndexedSplit

        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);
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.