Package com.netflix.aegisthus.io.sstable

Examples of com.netflix.aegisthus.io.sstable.SSTableColumnScanner


            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);
            scanner.skipUnsafe(start);
            this.pos = start;
            LOG.info("Creating observable");
View Full Code Here

TOP

Related Classes of com.netflix.aegisthus.io.sstable.SSTableColumnScanner

Copyright © 2018 www.massapicom. 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.