huskysun commented on a change in pull request #29924:
URL: https://github.com/apache/spark/pull/29924#discussion_r504198638
##########
File path:
resource-managers/kubernetes/core/src/main/scala/org/apache/spark/scheduler/cluster/k8s/ExecutorPodsSnapshot.scala
##########
@@ -59,11 +65,19 @@ object ExecutorPodsSnapshot extends Logging {
case "pending" =>
PodPending(pod)
case "running" =>
- PodRunning(pod)
+ if (shouldCheckAllContainers &&
+ "Never" == pod.getSpec.getRestartPolicy &&
+ pod.getStatus.getContainerStatuses.stream
+ .map[ContainerStateTerminated](cs => cs.getState.getTerminated)
+ .anyMatch(t => t != null && t.getExitCode != 0)) {
+ PodFailed(pod)
+ } else {
+ PodRunning(pod)
+ }
case "failed" =>
PodFailed(pod)
case "succeeded" =>
- PodSucceeded(pod)
+ PodSucceeded(pod)
Review comment:
Sorry about that, just fixed it
----------------------------------------------------------------
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]