-
- Downloads
[SPARK-3877][YARN] Throw an exception when application is not successful so...
[SPARK-3877][YARN] Throw an exception when application is not successful so that the exit code wil be set to 1 When an yarn application fails (yarn-cluster mode), the exit code of spark-submit is still 0. It's hard for people to write some automatic scripts to run spark jobs in yarn because the failure can not be detected in these scripts. This PR added a status checking after `monitorApplication`. If an application is not successful, `run()` will throw an `SparkException`, so that Client.scala will exit with code 1. Therefore, people can use the exit code of `spark-submit` to write some automatic scripts. Author: zsxwing <zsxwing@gmail.com> Closes #2732 from zsxwing/SPARK-3877 and squashes the following commits: 1f89fa5 [zsxwing] Fix the unit test a0498e1 [zsxwing] Update the docs and the error message e1cb9ef [zsxwing] Fix the hacky way of calling Client ff16fec [zsxwing] Remove System.exit in Client.scala and add a test 6a2c103 [zsxwing] [SPARK-3877] Throw an exception when application is not successful so that the exit code wil be set to 1
Showing
- yarn/alpha/src/main/scala/org/apache/spark/deploy/yarn/Client.scala 2 additions, 10 deletions.../src/main/scala/org/apache/spark/deploy/yarn/Client.scala
- yarn/common/src/main/scala/org/apache/spark/deploy/yarn/ClientBase.scala 23 additions, 6 deletions.../main/scala/org/apache/spark/deploy/yarn/ClientBase.scala
- yarn/common/src/main/scala/org/apache/spark/scheduler/cluster/YarnClientSchedulerBackend.scala 1 addition, 1 deletion.../spark/scheduler/cluster/YarnClientSchedulerBackend.scala
- yarn/stable/src/main/scala/org/apache/spark/deploy/yarn/Client.scala 2 additions, 10 deletions.../src/main/scala/org/apache/spark/deploy/yarn/Client.scala
- yarn/stable/src/test/scala/org/apache/spark/deploy/yarn/YarnClusterSuite.scala 16 additions, 8 deletions...scala/org/apache/spark/deploy/yarn/YarnClusterSuite.scala
Loading
Please register or sign in to comment