We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 896a218 commit 3910d50Copy full SHA for 3910d50
core/src/main/scala/org/apache/spark/executor/CoarseGrainedExecutorBackend.scala
@@ -321,10 +321,13 @@ private[spark] class CoarseGrainedExecutorBackend(
321
lastTaskRunningTime = System.nanoTime()
322
}
323
324
- }.setDaemon(true)
325
- logInfo("Will exit when finished decommissioning")
326
- // Return true since we are handling a signal
327
- true
+ }
+ }.setDaemon(true)
+ shutdownThread.start()
+
328
+ logInfo("Will exit when finished decommissioning")
329
+ // Return true since we are handling a signal
330
+ true
331
} catch {
332
case e: Exception =>
333
logError("Unexpected error while decommissioning self", e)
0 commit comments