We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d74fd8f commit e756ce4Copy full SHA for e756ce4
project/MimaExcludes.scala
@@ -72,6 +72,10 @@ object MimaExcludes {
72
// SPARK-6703 Add getOrCreate method to SparkContext
73
ProblemFilters.exclude[IncompatibleResultTypeProblem]
74
("org.apache.spark.SparkContext.org$apache$spark$SparkContext$$activeContext")
75
+ )++ Seq(
76
+ // SPARK-7090 Introduce LDAOptimizer to LDA to further improve extensibility
77
+ ProblemFilters.exclude[MissingClassProblem](
78
+ "org.apache.spark.mllib.clustering.LDA$EMOptimizer")
79
)
80
81
case v if v.startsWith("1.3") =>
0 commit comments