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 1da5f1a commit 20c7b48Copy full SHA for 20c7b48
project/MimaExcludes.scala
@@ -161,6 +161,9 @@ object MimaExcludes {
161
// SPARK-3580 Add getNumPartitions method to JavaRDD
162
ProblemFilters.exclude[MissingMethodProblem](
163
"org.apache.spark.api.java.JavaRDDLike.getNumPartitions")
164
+ ) ++ Seq(
165
+ // SPARK-12149 Added new fields to ExecutorSummary
166
+ ProblemFilters.exclude[MissingMethodProblem]("org.apache.spark.status.api.v1.ExecutorSummary.this")
167
) ++
168
// SPARK-11314: YARN backend moved to yarn sub-module and MiMA complains even though it's a
169
// private class.
0 commit comments