Package com.netflix.aegisthus.input.readers

Examples of com.netflix.aegisthus.input.readers.CombineSSTableReader


  @Override
  public RecordReader<Text, Text> createRecordReader(InputSplit inputSplit, TaskAttemptContext context) {
    AegSplit split = null;
    if (inputSplit instanceof AegCombinedSplit) {
      return new CombineSSTableReader();
    }
    split = (AegSplit) inputSplit;
    RecordReader<Text, Text> reader = null;
    switch (split.getType()) {
    case json:
View Full Code Here

TOP

Related Classes of com.netflix.aegisthus.input.readers.CombineSSTableReader

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.