Package org.apache.crunch.impl.mr.collect

Examples of org.apache.crunch.impl.mr.collect.MRCollectionFactory


   * @param jarClass Class containing the main driver method for running the pipeline
   * @param name Display name of the pipeline
   * @param conf Configuration to be used within all MapReduce jobs run in the pipeline
   */
  public MRPipeline(Class<?> jarClass, String name, Configuration conf) {
    super(name, conf, new MRCollectionFactory());
    this.jarClass = jarClass;
  }
View Full Code Here


   * @param jarClass Class containing the main driver method for running the pipeline
   * @param name Display name of the pipeline
   * @param conf Configuration to be used within all MapReduce jobs run in the pipeline
   */
  public MRPipeline(Class<?> jarClass, String name, Configuration conf) {
    super(name, conf, new MRCollectionFactory());
    this.jarClass = jarClass;
  }
View Full Code Here

TOP

Related Classes of org.apache.crunch.impl.mr.collect.MRCollectionFactory

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.