aboutsummaryrefslogtreecommitdiff
path: root/core/src/main/scala/org/apache
diff options
context:
space:
mode:
authorEric Liang <ekl@databricks.com>2016-04-05 22:37:51 -0700
committerAndrew Or <andrew@databricks.com>2016-04-05 22:37:51 -0700
commit78c1076d0421cc41cbdb788f38b13c9a00e8f561 (patch)
tree06ba1a7c920cce4bc242061938a81858f123524d /core/src/main/scala/org/apache
parent68be5b9e8a5ac1fc4d243bb54c2ca95fee3f74dc (diff)
downloadspark-78c1076d0421cc41cbdb788f38b13c9a00e8f561.tar.gz
spark-78c1076d0421cc41cbdb788f38b13c9a00e8f561.tar.bz2
spark-78c1076d0421cc41cbdb788f38b13c9a00e8f561.zip
[SPARK-14252] Executors do not try to download remote cached blocks
## What changes were proposed in this pull request? As mentioned in the ticket this was because one get path in the refactored `BlockManager` did not check for remote storage. ## How was this patch tested? Unit test, also verified manually with reproduction in the ticket. cc JoshRosen Author: Eric Liang <ekl@databricks.com> Closes #12193 from ericl/spark-14252.
Diffstat (limited to 'core/src/main/scala/org/apache')
-rw-r--r--core/src/main/scala/org/apache/spark/storage/BlockManager.scala8
1 files changed, 8 insertions, 0 deletions
diff --git a/core/src/main/scala/org/apache/spark/storage/BlockManager.scala b/core/src/main/scala/org/apache/spark/storage/BlockManager.scala
index 9608418b43..35a6c63ad1 100644
--- a/core/src/main/scala/org/apache/spark/storage/BlockManager.scala
+++ b/core/src/main/scala/org/apache/spark/storage/BlockManager.scala
@@ -643,6 +643,14 @@ private[spark] class BlockManager(
level: StorageLevel,
classTag: ClassTag[T],
makeIterator: () => Iterator[T]): Either[BlockResult, Iterator[T]] = {
+ // Attempt to read the block from local or remote storage. If it's present, then we don't need
+ // to go through the local-get-or-put path.
+ get(blockId) match {
+ case Some(block) =>
+ return Left(block)
+ case _ =>
+ // Need to compute the block.
+ }
// Initially we hold no locks on this block.
doPutIterator(blockId, makeIterator, level, classTag, keepReadLock = true) match {
case None =>