aboutsummaryrefslogtreecommitdiff
path: root/project
diff options
context:
space:
mode:
authorHerman van Hovell <hvanhovell@questtec.nl>2016-04-30 16:06:20 +0100
committerSean Owen <sowen@cloudera.com>2016-04-30 16:06:20 +0100
commite5fb78baf9a6014b6dd02cf9f528d069732aafca (patch)
treef1c49579318bfa86831fbd7cf84be902b0ece27f /project
parent0847fe4eb346e3c2060eb0f3680610bec06115e7 (diff)
downloadspark-e5fb78baf9a6014b6dd02cf9f528d069732aafca.tar.gz
spark-e5fb78baf9a6014b6dd02cf9f528d069732aafca.tar.bz2
spark-e5fb78baf9a6014b6dd02cf9f528d069732aafca.zip
[SPARK-14952][CORE][ML] Remove methods that were deprecated in 1.6.0
#### What changes were proposed in this pull request? This PR removes three methods the were deprecated in 1.6.0: - `PortableDataStream.close()` - `LinearRegression.weights` - `LogisticRegression.weights` The rationale for doing this is that the impact is small and that Spark 2.0 is a major release. #### How was this patch tested? Compilation succeded. Author: Herman van Hovell <hvanhovell@questtec.nl> Closes #12732 from hvanhovell/SPARK-14952.
Diffstat (limited to 'project')
-rw-r--r--project/MimaExcludes.scala5
1 files changed, 5 insertions, 0 deletions
diff --git a/project/MimaExcludes.scala b/project/MimaExcludes.scala
index 6fc49a08fe..33e0db606c 100644
--- a/project/MimaExcludes.scala
+++ b/project/MimaExcludes.scala
@@ -689,6 +689,11 @@ object MimaExcludes {
// [SPARK-4452][Core]Shuffle data structures can starve others on the same thread for memory
ProblemFilters.exclude[IncompatibleTemplateDefProblem]("org.apache.spark.util.collection.Spillable")
) ++ Seq(
+ // [SPARK-14952][Core][ML] Remove methods deprecated in 1.6
+ ProblemFilters.exclude[DirectMissingMethodProblem]("org.apache.spark.input.PortableDataStream.close"),
+ ProblemFilters.exclude[DirectMissingMethodProblem]("org.apache.spark.ml.classification.LogisticRegressionModel.weights"),
+ ProblemFilters.exclude[DirectMissingMethodProblem]("org.apache.spark.ml.regression.LinearRegressionModel.weights")
+ ) ++ Seq(
// SPARK-14654: New accumulator API
ProblemFilters.exclude[MissingTypesProblem]("org.apache.spark.ExceptionFailure$"),
ProblemFilters.exclude[DirectMissingMethodProblem]("org.apache.spark.ExceptionFailure.apply"),