All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.twitter.elephantbird.pig.load.MultiFormatLoader Maven / Gradle / Ivy

There is a newer version: 4.17
Show newest version
package com.twitter.elephantbird.pig.load;

import java.io.IOException;

import org.apache.hadoop.io.LongWritable;
import org.apache.hadoop.mapreduce.InputFormat;
import org.apache.pig.LoadFunc;
import org.apache.thrift.TBase;

import com.google.protobuf.Message;
import com.twitter.elephantbird.mapreduce.input.MultiInputFormat;
import com.twitter.elephantbird.mapreduce.io.BinaryWritable;
import com.twitter.elephantbird.pig.util.PigUtil;
import com.twitter.elephantbird.util.TypeRef;

/**
 * A loader based on {@link MultiInputFormat} to read input written in
 * different file formats.
 *
 * @see MultiInputFormat
 */
public class MultiFormatLoader extends FilterLoadFunc {

  private TypeRef typeRef = null;

  /**
   * @param className Thrift or Protobuf class
   */
  public MultiFormatLoader(String className) {
    super(null);
    Class clazz = PigUtil.getClass(className);
    typeRef = new TypeRef(clazz){};

    /* Initialize the loader. It is required to handle
     * functionality of LoadFunc, LoadMetadata etc,
     * even though it does not affect the inputformat.
     */
    LoadFunc ldr;
    if (Message.class.isAssignableFrom(clazz)) {
      ldr = new ProtobufPigLoader(className);

    } else if (TBase.class.isAssignableFrom(clazz)) {
      ldr = new ThriftPigLoader>(className);

    } else {
      throw new RuntimeException(className + " is not a Protobuf or Thrift class");
    }

    setLoader(ldr);
  }

  @Override
  public InputFormat> getInputFormat() throws IOException {
    return new MultiInputFormat(typeRef);
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy