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 68b9e83 commit a5ef11bCopy full SHA for a5ef11b
core/src/main/scala/org/apache/spark/storage/BlockManager.scala
@@ -517,6 +517,11 @@ private[spark] class BlockManager(
517
}
518
519
} else {
520
+ // This branch represents a case where the BlockInfoManager contained an entry for
521
+ // the block but the block could not be found in any of the block stores. This case
522
+ // should never occur, but for completeness's sake we address it here.
523
+ logError(
524
+ s"Block $blockId is supposedly stored locally but was not found in any block store")
525
releaseLock(blockId)
526
None
527
0 commit comments