tzxxh created SPARK-29782:
-----------------------------
Summary: spark broadcast can not be destoryed in some versions
Key: SPARK-29782
URL: https://issues.apache.org/jira/browse/SPARK-29782
Project: Spark
Issue Type: Bug
Components: Block Manager
Affects Versions: 2.4.4, 2.4.3, 2.4.2, 2.4.1, 2.3.3
Reporter: tzxxh
In spark version (2.3.3 , 2.4.1 , 2.4.2 , 2.4.3 , 2.4.4) use
Broadcast.destroy() method can not destroy the broadcast data, the driver and
executor storage memory in spark ui is continuous increase。
{code:java}
//代码占位符
val batch = Seq(1 to 9999: _*)
val strSeq = batch.map(i => s"xxh-$i") v
al rdd = sc.parallelize(strSeq)
rdd.cache()
batch.foreach(_ => {
val broc = sc.broadcast(strSeq)
rdd.map(id => broc.value.contains(id)).collect()
broc.destroy()
})
{code}
--
This message was sent by Atlassian Jira
(v8.3.4#803005)
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]