Package org.apache.hadoop.mapred

Examples of org.apache.hadoop.mapred.UserLogCleaner


   *
   * @throws IOException
   */
  public UserLogManager(Configuration conf) throws IOException {
    taskLogsTruncater = new TaskLogsTruncater(conf);
    userLogCleaner = new UserLogCleaner(this, conf);
    monitorLogEvents.setDaemon(true);
  }
View Full Code Here


    setFields(conf);
  }
 
  private void setFields(Configuration conf) throws IOException {
    taskLogsTruncater = new TaskLogsTruncater(conf);
    userLogCleaner = new UserLogCleaner(this, conf);
    monitorLogEvents.setDaemon(true);
  }
View Full Code Here

TOP

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

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.