aboutsummaryrefslogtreecommitdiff
path: root/project
diff options
context:
space:
mode:
authorRaymond Liu <raymond.liu@intel.com>2014-08-29 23:05:18 -0700
committerReynold Xin <rxin@apache.org>2014-08-29 23:05:18 -0700
commitacea92806c91535162a9fdcb1cce579e7f1f91c7 (patch)
treed5b0869bfb158825deb9148209438f84ab14ea0b /project
parent7e662af332beb171dc89027a2562d0949d69cfa0 (diff)
downloadspark-acea92806c91535162a9fdcb1cce579e7f1f91c7.tar.gz
spark-acea92806c91535162a9fdcb1cce579e7f1f91c7.tar.bz2
spark-acea92806c91535162a9fdcb1cce579e7f1f91c7.zip
[SPARK-2288] Hide ShuffleBlockManager behind ShuffleManager
By Hiding the shuffleblockmanager behind Shufflemanager, we decouple the shuffle data's block mapping management work from Diskblockmananger. This give a more clear interface and more easy for other shuffle manager to implement their own block management logic. the jira ticket have more details. Author: Raymond Liu <raymond.liu@intel.com> Closes #1241 from colorant/shuffle and squashes the following commits: 0e01ae3 [Raymond Liu] Move ShuffleBlockmanager behind shuffleManager
Diffstat (limited to 'project')
-rw-r--r--project/MimaExcludes.scala2
1 files changed, 2 insertions, 0 deletions
diff --git a/project/MimaExcludes.scala b/project/MimaExcludes.scala
index 300589394b..fe8ffe6d97 100644
--- a/project/MimaExcludes.scala
+++ b/project/MimaExcludes.scala
@@ -59,6 +59,8 @@ object MimaExcludes {
ProblemFilters.exclude[MissingMethodProblem](
"org.apache.spark.api.java.JavaDoubleRDD.countApproxDistinct$default$1"),
ProblemFilters.exclude[MissingMethodProblem](
+ "org.apache.spark.storage.DiskStore.getValues"),
+ ProblemFilters.exclude[MissingMethodProblem](
"org.apache.spark.storage.MemoryStore.Entry")
) ++
Seq(