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

    https://github.com/apache/spark/pull/13982#discussion_r69079471
  
    --- Diff: core/src/main/scala/org/apache/spark/executor/Executor.scala ---
    @@ -406,7 +406,7 @@ private[spark] class Executor(
     
               // Don't forcibly exit unless the exception was inherently 
fatal, to avoid
               // stopping other tasks unnecessarily.
    -          if (Utils.isFatalError(t)) {
    +          if (Utils.isFatalError(t) && !Utils.isLinkageError(t)) {
    --- End diff --
    
    It's conceivable this could just be 'whitelisted' as a non-fatal error, but 
that bears checking where else this is used. I'm not sure I agree with the 
premise of the change though.


---
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