Package org.apache.hadoop.yarn.logaggregation.AggregatedLogFormat

Examples of org.apache.hadoop.yarn.logaggregation.AggregatedLogFormat.LogValue


    LOG.info("Uploading logs for container " + containerId
        + ". Current good log dirs are "
        + StringUtils.join(",", dirsHandler.getLogDirs()));
    LogKey logKey = new LogKey(containerId);
    LogValue logValue =
        new LogValue(dirsHandler.getLogDirs(), containerId,
          userUgi.getShortUserName());
    try {
      this.writer.append(logKey, logValue);
    } catch (IOException e) {
      LOG.error("Couldn't upload logs for " + containerId
View Full Code Here

TOP

Related Classes of org.apache.hadoop.yarn.logaggregation.AggregatedLogFormat.LogValue

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.