Package com.twitter.elephantbird.mapred.input

Source Code of com.twitter.elephantbird.mapred.input.DeprecatedLzoTextInputFormat

package com.twitter.elephantbird.mapred.input;

import org.apache.hadoop.io.LongWritable;
import org.apache.hadoop.io.Text;

import com.twitter.elephantbird.mapreduce.input.LzoTextInputFormat;

/**
* mapred version of {@link LzoTextInputFormat}.
*/
public class DeprecatedLzoTextInputFormat extends DeprecatedFileInputFormatWrapper<LongWritable, Text> {
  public DeprecatedLzoTextInputFormat() {
    super(new LzoTextInputFormat());
  }
}
TOP

Related Classes of com.twitter.elephantbird.mapred.input.DeprecatedLzoTextInputFormat

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.