SaurabhChawla100 commented on a change in pull request #31974:
URL: https://github.com/apache/spark/pull/31974#discussion_r614338070
##########
File path:
resource-managers/yarn/src/main/scala/org/apache/spark/scheduler/cluster/YarnSchedulerBackend.scala
##########
@@ -333,6 +333,13 @@ private[spark] abstract class YarnSchedulerBackend(
logWarning(s"Requesting driver to remove executor $executorId for
reason $reason")
driverEndpoint.send(r)
}
+
+ // In case of yarn Miscellaneous Process is Spark AM Container
+ // Launched for the deploy mode client
+ case processInfo @ MiscellaneousProcessInfo(_, _) =>
+ logInfo(s"Sending the Spark AM info for yarn client mode")
Review comment:
made it debug
##########
File path:
resource-managers/yarn/src/main/scala/org/apache/spark/scheduler/cluster/YarnSchedulerBackend.scala
##########
@@ -333,6 +333,13 @@ private[spark] abstract class YarnSchedulerBackend(
logWarning(s"Requesting driver to remove executor $executorId for
reason $reason")
driverEndpoint.send(r)
}
+
+ // In case of yarn Miscellaneous Process is Spark AM Container
+ // Launched for the deploy mode client
+ case processInfo @ MiscellaneousProcessInfo(_, _) =>
+ logInfo(s"Sending the Spark AM info for yarn client mode")
+ driverEndpoint.send(processInfo)
+
Review comment:
done
--
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.
For queries about this service, please contact Infrastructure at:
[email protected]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]