Package org.apache.hadoop.yarn.server.nodemanager.containermanager.logaggregation.AggregatedLogFormat

Examples of org.apache.hadoop.yarn.server.nodemanager.containermanager.logaggregation.AggregatedLogFormat.LogValue


      }
    }

    LOG.info("Uploading logs for container " + containerId);
    LogKey logKey = new LogKey(containerId);
    LogValue logValue = new LogValue(this.rootLogDirs, containerId);
    try {
      this.writer.append(logKey, logValue);
    } catch (IOException e) {
      LOG.error("Couldn't upload logs for " + containerId
          + ". Skipping this container.");
View Full Code Here

TOP

Related Classes of org.apache.hadoop.yarn.server.nodemanager.containermanager.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.