Package org.apache.hadoop.mapred

Examples of org.apache.hadoop.mapred.DefaultTaskController


   * instead.
   */
  @Deprecated
  public static String makeRelative(URI cache, Configuration conf)
      throws IOException {
    return new TrackerDistributedCacheManager(conf, new DefaultTaskController())
        .makeRelative(cache, conf);
  }
View Full Code Here


   * @deprecated Internal to MapReduce framework.
   * Use TrackerDistributedCacheManager instead.
   */
  @Deprecated
  public static void purgeCache(Configuration conf) throws IOException {
    new TrackerDistributedCacheManager(conf, new DefaultTaskController())
        .purgeCache();
  }
View Full Code Here

TOP

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

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.