Github user andrewor14 commented on a diff in the pull request:
https://github.com/apache/spark/pull/962#discussion_r14214845
--- Diff: core/src/main/scala/org/apache/spark/storage/BlockManager.scala
---
@@ -457,12 +467,12 @@ private[spark] class BlockManager(
memoryStore.putValues(blockId, valuesBuffer, level,
returnValues = true).data
match {
case Left(values2) =>
- return Some(values2)
+ return Some(new BlockResult(values2,
DataReadMethod.Disk, info.size))
case _ =>
- throw new SparkException("Memory store did not
return an iterator")
+ throw new Exception("Memory store did not return
back an iterator")
--- End diff --
was this a false change?
---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at [email protected] or file a JIRA ticket
with INFRA.
---