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

(cherry picked from commit f59e36b4ce)
This commit is contained in:
Varun Saxena 2017-01-09 11:17:19 +05:30
parent 7b5b57e5b2
commit 4fab250fc0
1 changed files with 2 additions and 2 deletions

View File

@ -498,8 +498,8 @@ public class AppLogAggregatorImpl implements AppLogAggregator {
+ appId, e);
doAppLogAggregationPostCleanUp();
} 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(
new ApplicationEvent(this.appId,
ApplicationEventType.APPLICATION_LOG_HANDLING_FAILED));