Package com.twitter.elephantbird.mapred.input

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

package com.twitter.elephantbird.mapred.input;

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

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

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

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

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.