Package org.apache.hadoop.mapred

Examples of org.apache.hadoop.mapred.LocalJobRunnerWithFix


    String tracker = conf.get(JTConfig.JT_IPC_ADDRESS, "clocal");
    LOG.info("Using tracker: " + tracker);

    if ("clocal".equals(tracker)) {
      conf.setInt("mapreduce.job.maps", 1);
      return new LocalJobRunnerWithFix(conf);
    } else {

      throw new IOException("Invalid \"" + JTConfig.JT_IPC_ADDRESS
                              + "\" configuration value for LocalJobRunner : \""
                              + tracker + "\"");
View Full Code Here

TOP

Related Classes of org.apache.hadoop.mapred.LocalJobRunnerWithFix

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.