Skip to content

Commit

Permalink
[SPARK-3709] Executors don't always report broadcast block removal pr…
Browse files Browse the repository at this point in the history
…operly back to the driver (for branch-1.1)

Author: Reynold Xin <[email protected]>

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

(cherry picked from commit a8c6e82)
Signed-off-by: Reynold Xin <[email protected]>
  • Loading branch information
rxin committed Sep 30, 2014
1 parent 4f991c9 commit b539b0e
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -57,9 +57,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, _) =>
Expand Down

0 comments on commit b539b0e

Please sign in to comment.