aboutsummaryrefslogtreecommitdiff
path: root/project
diff options
context:
space:
mode:
authorJeff Zhang <zjffdu@apache.org>2016-01-26 17:31:19 -0800
committerXiangrui Meng <meng@databricks.com>2016-01-26 17:31:19 -0800
commit1dac964c1b996d38c65818414fc8401961a1de8a (patch)
tree9fa21c83ff1737851ab87e1e044eef73be5c588e /project
parent22662b241629b56205719ede2f801a476e10a3cd (diff)
downloadspark-1dac964c1b996d38c65818414fc8401961a1de8a.tar.gz
spark-1dac964c1b996d38c65818414fc8401961a1de8a.tar.bz2
spark-1dac964c1b996d38c65818414fc8401961a1de8a.zip
[SPARK-11622][MLLIB] Make LibSVMRelation extends HadoopFsRelation and…
… Add LibSVMOutputWriter The behavior of LibSVMRelation is not changed except adding LibSVMOutputWriter * Partition is still not supported * Multiple input paths is not supported Author: Jeff Zhang <zjffdu@apache.org> Closes #9595 from zjffdu/SPARK-11622.
Diffstat (limited to 'project')
-rw-r--r--project/MimaExcludes.scala4
1 files changed, 4 insertions, 0 deletions
diff --git a/project/MimaExcludes.scala b/project/MimaExcludes.scala
index 643bee6969..fc7dc2181d 100644
--- a/project/MimaExcludes.scala
+++ b/project/MimaExcludes.scala
@@ -203,6 +203,10 @@ object MimaExcludes {
// SPARK-12847 Remove StreamingListenerBus and post all Streaming events to the same thread as Spark events
ProblemFilters.exclude[MissingClassProblem]("org.apache.spark.util.AsynchronousListenerBus$"),
ProblemFilters.exclude[MissingClassProblem]("org.apache.spark.util.AsynchronousListenerBus")
+ ) ++ Seq(
+ // SPARK-11622 Make LibSVMRelation extends HadoopFsRelation and Add LibSVMOutputWriter
+ ProblemFilters.exclude[MissingTypesProblem]("org.apache.spark.ml.source.libsvm.DefaultSource"),
+ ProblemFilters.exclude[MissingMethodProblem]("org.apache.spark.ml.source.libsvm.DefaultSource.createRelation")
)
case v if v.startsWith("1.6") =>
Seq(