Github user zsxwing commented on a diff in the pull request:

    https://github.com/apache/spark/pull/15352#discussion_r82086601
  
    --- Diff: 
sql/core/src/main/scala/org/apache/spark/sql/execution/streaming/StreamExecution.scala
 ---
    @@ -207,13 +207,18 @@ class StreamExecution(
           })
         } catch {
           case _: InterruptedException if state == TERMINATED => // 
interrupted by stop()
    -      case NonFatal(e) =>
    +      case e: Throwable =>
             streamDeathCause = new StreamingQueryException(
               this,
               s"Query $name terminated with exception: ${e.getMessage}",
               e,
               Some(committedOffsets.toCompositeOffset(sources)))
             logError(s"Query $name terminated with error", e)
    +        // Rethrow the fatal errors to allow the user using 
`Thread.UncaughtExceptionHandler` to
    +        // handle them
    +        if (!NonFatal(e)) {
    +          throw e
    --- End diff --
    
    @frreiss this is a separate issue. Could you submit a PR after this one 
gets merged, please?


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at [email protected] or file a JIRA ticket
with INFRA.
---

---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to