-
- Downloads
[SPARK-10001] [CORE] Interrupt tasks in repl with Ctrl+C
## What changes were proposed in this pull request? Improve signal handling to allow interrupting running tasks from the REPL (with Ctrl+C). If no tasks are running or Ctrl+C is pressed twice, the signal is forwarded to the default handler resulting in the usual termination of the application. This PR is a rewrite of -- and therefore closes #8216 -- as per piaozhexiu's request ## How was this patch tested? Signal handling is not easily testable therefore no unit tests were added. Nevertheless, the new functionality is implemented in a best-effort approach, soft-failing in case signals aren't available on a specific OS. Author: Jakob Odersky <jakob@odersky.com> Closes #12557 from jodersky/SPARK-10001-sigint.
Showing
- core/src/main/scala/org/apache/spark/util/SignalLogger.scala 4 additions, 28 deletionscore/src/main/scala/org/apache/spark/util/SignalLogger.scala
- core/src/main/scala/org/apache/spark/util/Signaling.scala 99 additions, 0 deletionscore/src/main/scala/org/apache/spark/util/Signaling.scala
- repl/scala-2.10/src/main/scala/org/apache/spark/repl/SparkILoop.scala 1 addition, 0 deletions....10/src/main/scala/org/apache/spark/repl/SparkILoop.scala
- repl/scala-2.11/src/main/scala/org/apache/spark/repl/Main.scala 1 addition, 0 deletions...cala-2.11/src/main/scala/org/apache/spark/repl/Main.scala
- repl/src/main/scala/org/apache/spark/repl/Signaling.scala 42 additions, 0 deletionsrepl/src/main/scala/org/apache/spark/repl/Signaling.scala
Please register or sign in to comment