Ngone51 commented on code in PR #52139: URL: https://github.com/apache/spark/pull/52139#discussion_r2306104382
########## core/src/main/scala/org/apache/spark/util/UninterruptibleThread.scala: ########## @@ -101,7 +101,11 @@ private[spark] class UninterruptibleThread( * is true) and no concurrent [[interrupt()]] call, otherwise false */ def isInterruptible: Boolean = synchronized { - shouldInterruptThread = uninterruptible + // SPARK-53394: We should not interrupt the thread when it is already interrupted. + // Otherwise, the state of `shouldInterruptThread` becomes inconsistent between + // `isInterruptible()` and `isInterruptPending()`, leading to `UninterruptibleThread` + // be interruptible under `runUninterruptibly`. + shouldInterruptThread = uninterruptible || UninterruptibleThread.this.isInterrupted Review Comment: Yea, I think you are right. Updated the code. -- 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. To unsubscribe, e-mail: reviews-unsubscr...@spark.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org --------------------------------------------------------------------- To unsubscribe, e-mail: reviews-unsubscr...@spark.apache.org For additional commands, e-mail: reviews-h...@spark.apache.org