Package com.netflix.aegisthus.io.commitlog

Examples of com.netflix.aegisthus.io.commitlog.CommitLogScanner


            }
            // open the file and seek to the start of the split
            FileSystem fs = file.getFileSystem(ctx.getConfiguration());
            FSDataInputStream fileIn = fs.open(split.getPath());
            InputStream dis = new BufferedInputStream(fileIn);
            scanner = new CommitLogScanner(new DataInputStream(dis), split.getConvertors(),
                    Descriptor.fromFilename(split.getPath().getName()).version);
            this.pos = start;
        } catch (IOException e) {
            throw new IOError(e);
        }
View Full Code Here

TOP

Related Classes of com.netflix.aegisthus.io.commitlog.CommitLogScanner

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.