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

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

package com.twitter.elephantbird.pig.load;

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

public class LzoJsonLoader extends JsonLoader {
  
  /**
   * Constructor. Construct a LzoJsonLoader LoadFunc to load.
   * @param optString Loader options. For available options,
   * see {@link JsonLoader#JsonLoader(String)}.
   * Notice that the -inputFormat option is overridden.
   */
  public LzoJsonLoader(String optString) {
    super(optString);
    this.setInputFormatClassName(LzoTextInputFormat.class.getName());
  }
  
  public LzoJsonLoader() {
    // defaults to no options
    this("");
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy