aboutsummaryrefslogtreecommitdiff
path: root/project
diff options
context:
space:
mode:
authortmalaska <ted.malaska@cloudera.com>2014-07-10 13:15:02 -0700
committerTathagata Das <tathagata.das1565@gmail.com>2014-07-10 13:15:02 -0700
commit40a8fef4e6619b4ea10a4ec9026260649ce5ae73 (patch)
tree14bdcb5f6475634e95c65b766eeec64022b6d09f /project
parent369aa84e8fba883165817338ac8bf9460be74521 (diff)
downloadspark-40a8fef4e6619b4ea10a4ec9026260649ce5ae73.tar.gz
spark-40a8fef4e6619b4ea10a4ec9026260649ce5ae73.tar.bz2
spark-40a8fef4e6619b4ea10a4ec9026260649ce5ae73.zip
[SPARK-1478].3: Upgrade FlumeInputDStream's FlumeReceiver to support FLUME-1915
This is a modified version of this PR https://github.com/apache/spark/pull/1168 done by @tmalaska Adds MIMA binary check exclusions. Author: tmalaska <ted.malaska@cloudera.com> Author: Tathagata Das <tathagata.das1565@gmail.com> Closes #1347 from tdas/FLUME-1915 and squashes the following commits: 96065df [Tathagata Das] Added Mima exclusion for FlumeReceiver. 41d5338 [tmalaska] Address line 57 that was too long 12617e5 [tmalaska] SPARK-1478: Upgrade FlumeInputDStream's Flume...
Diffstat (limited to 'project')
-rw-r--r--project/MimaExcludes.scala3
1 files changed, 3 insertions, 0 deletions
diff --git a/project/MimaExcludes.scala b/project/MimaExcludes.scala
index 44bc9dc5fb..3b7b87b80c 100644
--- a/project/MimaExcludes.scala
+++ b/project/MimaExcludes.scala
@@ -64,6 +64,9 @@ object MimaExcludes {
"org.apache.spark.rdd.PairRDDFunctions.org$apache$spark$rdd$PairRDDFunctions$$"
+ "createZero$1")
) ++
+ Seq(
+ ProblemFilters.exclude[MissingMethodProblem]("org.apache.spark.streaming.flume.FlumeReceiver.this")
+ ) ++
Seq( // Ignore some private methods in ALS.
ProblemFilters.exclude[MissingMethodProblem](
"org.apache.spark.mllib.recommendation.ALS.org$apache$spark$mllib$recommendation$ALS$^dateFeatures"),