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 104a89a commit 6222697Copy full SHA for 6222697
core/src/main/scala/org/apache/spark/storage/ShuffleBlockManager.scala
@@ -170,9 +170,9 @@ class ShuffleBlockManager(blockManager: BlockManager) extends Logging {
170
}
171
172
/** Remove all the blocks / files and metadata related to a particular shuffle. */
173
- def removeShuffle(shuffleId: ShuffleId) {
174
- removeShuffleBlocks(shuffleId)
+ def removeShuffle(shuffleId: ShuffleId): Boolean = {
175
shuffleStates.remove(shuffleId)
+ removeShuffleBlocks(shuffleId)
176
177
178
/** Remove all the blocks / files related to a particular shuffle. */
0 commit comments