[ 
https://issues.apache.org/jira/browse/SPARK-6132?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Andrew Or updated SPARK-6132:
-----------------------------
    Target Version/s: 1.1.2, 1.2.2, 1.4.0, 1.3.1  (was: 1.4.0, 1.3.1)

> Context cleaner race condition across SparkContexts
> ---------------------------------------------------
>
>                 Key: SPARK-6132
>                 URL: https://issues.apache.org/jira/browse/SPARK-6132
>             Project: Spark
>          Issue Type: Bug
>          Components: Spark Core
>    Affects Versions: 1.0.0
>            Reporter: Andrew Or
>            Assignee: Andrew Or
>              Labels: backport-needed
>             Fix For: 1.4.0
>
>
> The context cleaner thread is not stopped properly. If a SparkContext is 
> started immediately after one stops, the context cleaner of the former can 
> clean variables in the latter.
> This is because the cleaner.stop() just sets a flag and expects the thread to 
> terminate asynchronously, but the code to clean broadcasts goes through 
> `SparkEnv.get.blockManager`, which could belong to a different SparkContext. 
> This is likely to be the cause of the `JavaAPISuite`, which creates many 
> back-to-back SparkContexts, being flaky.
> The right behavior is to wait until all currently running clean up tasks have 
> finished.
> {code}
> java.io.IOException: org.apache.spark.SparkException: Failed to get 
> broadcast_0_piece0 of broadcast_0
>         at org.apache.spark.util.Utils$.tryOrIOException(Utils.scala:1180)
>         at 
> org.apache.spark.broadcast.TorrentBroadcast.readBroadcastBlock(TorrentBroadcast.scala:164)
>         at 
> org.apache.spark.broadcast.TorrentBroadcast._value$lzycompute(TorrentBroadcast.scala:64)
>         at 
> org.apache.spark.broadcast.TorrentBroadcast._value(TorrentBroadcast.scala:64)
>         ...
> Caused by: org.apache.spark.SparkException: Failed to get broadcast_0_piece0 
> of broadcast_0
>         at 
> org.apache.spark.broadcast.TorrentBroadcast$$anonfun$org$apache$spark$broadcast$TorrentBroadcast$$readBlocks$1$$anonfun$2.apply(TorrentBroadcast.scala:137)
>         at 
> org.apache.spark.broadcast.TorrentBroadcast$$anonfun$org$apache$spark$broadcast$TorrentBroadcast$$readBlocks$1$$anonfun$2.apply(TorrentBroadcast.scala:137)
>         at scala.Option.getOrElse(Option.scala:120)
> {code}



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)

---------------------------------------------------------------------
To unsubscribe, e-mail: issues-unsubscr...@spark.apache.org
For additional commands, e-mail: issues-h...@spark.apache.org

Reply via email to