You are viewing a plain text version of this content. The canonical link for it is here.
Posted to common-issues@hadoop.apache.org by "slfan1989 (via GitHub)" <gi...@apache.org> on 2023/05/24 03:41:12 UTC

[GitHub] [hadoop] slfan1989 commented on a diff in pull request #4797: YARN-11277. Trigger log-dir deletion by size for NonAggregatingLogHandler

slfan1989 commented on code in PR #4797:
URL: https://github.com/apache/hadoop/pull/4797#discussion_r1203372898


##########
hadoop-yarn-project/hadoop-yarn/hadoop-yarn-server/hadoop-yarn-server-nodemanager/src/main/java/org/apache/hadoop/yarn/server/nodemanager/containermanager/loghandler/NonAggregatingLogHandler.java:
##########
@@ -149,58 +156,65 @@ private void recover() throws IOException {
   @Override
   public void handle(LogHandlerEvent event) {
     switch (event.getType()) {
-      case APPLICATION_STARTED:
-        LogHandlerAppStartedEvent appStartedEvent =
-            (LogHandlerAppStartedEvent) event;
-        this.appOwners.put(appStartedEvent.getApplicationId(),
-            appStartedEvent.getUser());
-        this.dispatcher.getEventHandler().handle(
-            new ApplicationEvent(appStartedEvent.getApplicationId(),
-                ApplicationEventType.APPLICATION_LOG_HANDLING_INITED));
+    case APPLICATION_STARTED:
+      LogHandlerAppStartedEvent appStartedEvent =
+          (LogHandlerAppStartedEvent) event;
+      this.appOwners.put(appStartedEvent.getApplicationId(),
+          appStartedEvent.getUser());
+      this.dispatcher.getEventHandler().handle(
+          new ApplicationEvent(appStartedEvent.getApplicationId(),
+              ApplicationEventType.APPLICATION_LOG_HANDLING_INITED));
+      break;
+    case CONTAINER_FINISHED:
+      // Ignore
+      break;
+    case APPLICATION_FINISHED:
+      LogHandlerAppFinishedEvent appFinishedEvent =
+          (LogHandlerAppFinishedEvent) event;
+      ApplicationId appId = appFinishedEvent.getApplicationId();
+      String user = appOwners.remove(appId);
+      if (user == null) {
+        LOG.error("Unable to locate user for " + appId);

Review Comment:
   {}



-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: common-issues-unsubscribe@hadoop.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


---------------------------------------------------------------------
To unsubscribe, e-mail: common-issues-unsubscribe@hadoop.apache.org
For additional commands, e-mail: common-issues-help@hadoop.apache.org