Skip to content
Snippets Groups Projects
Commit a8c6e82d authored by Reynold Xin's avatar Reynold Xin
Browse files

[SPARK-3709] Executors don't always report broadcast block removal properly...

[SPARK-3709] Executors don't always report broadcast block removal properly back to the driver (for branch-1.1)

Author: Reynold Xin <rxin@apache.org>

Closes #2591 from rxin/SPARK-3709-1.1 and squashes the following commits:

ab99cc0 [Reynold Xin] [SPARK-3709] Executors don't always report broadcast block removal properly back to the driver
parent 48be6576
No related branches found
No related tags found
No related merge requests found
......@@ -58,9 +58,9 @@ class BlockManagerSlaveActor(
blockManager.shuffleBlockManager.removeShuffle(shuffleId)
}
case RemoveBroadcast(broadcastId, tellMaster) =>
case RemoveBroadcast(broadcastId, _) =>
doAsync[Int]("removing broadcast " + broadcastId, sender) {
blockManager.removeBroadcast(broadcastId, tellMaster)
blockManager.removeBroadcast(broadcastId, tellMaster = true)
}
case GetBlockStatus(blockId, _) =>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment