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 2a95b5c commit a3d02ceCopy full SHA for a3d02ce
project/MimaExcludes.scala
@@ -784,6 +784,9 @@ object MimaExcludes {
784
// SPARK-17096: Improve exception string reported through the StreamingQueryListener
785
ProblemFilters.exclude[DirectMissingMethodProblem]("org.apache.spark.sql.streaming.StreamingQueryListener#QueryTerminated.stackTrace"),
786
ProblemFilters.exclude[DirectMissingMethodProblem]("org.apache.spark.sql.streaming.StreamingQueryListener#QueryTerminated.this")
787
+ ) ++ Seq(
788
+ // SPARK-16240: ML persistence backward compatibility for LDA
789
+ ProblemFilters.exclude[MissingTypesProblem]("org.apache.spark.ml.clustering.LDA$")
790
)
791
}
792
0 commit comments