Browse Source

YARN-6068. Log aggregation get failed when NM restart even with recovery (Junping Du via Varun Saxena)

Varun Saxena 8 years ago
parent
commit
f59e36b4ce

+ 2 - 2
hadoop-yarn-project/hadoop-yarn/hadoop-yarn-server/hadoop-yarn-server-nodemanager/src/main/java/org/apache/hadoop/yarn/server/nodemanager/containermanager/logaggregation/AppLogAggregatorImpl.java

@@ -498,8 +498,8 @@ public class AppLogAggregatorImpl implements AppLogAggregator {
           + appId, e);
           + appId, e);
       doAppLogAggregationPostCleanUp();
       doAppLogAggregationPostCleanUp();
     } finally {
     } finally {
-      if (!this.appAggregationFinished.get()) {
-        LOG.warn("Aggregation did not complete for application " + appId);
+      if (!this.appAggregationFinished.get() && !this.aborted.get()) {
+        LOG.warn("Log aggregation did not complete for application " + appId);
         this.dispatcher.getEventHandler().handle(
         this.dispatcher.getEventHandler().handle(
             new ApplicationEvent(this.appId,
             new ApplicationEvent(this.appId,
                 ApplicationEventType.APPLICATION_LOG_HANDLING_FAILED));
                 ApplicationEventType.APPLICATION_LOG_HANDLING_FAILED));