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 d16b5f3 commit e7a98d5Copy full SHA for e7a98d5
project/MimaExcludes.scala
@@ -660,6 +660,9 @@ object MimaExcludes {
660
// SPARK-14704: Create accumulators in TaskMetrics
661
ProblemFilters.exclude[DirectMissingMethodProblem]("org.apache.spark.executor.InputMetrics.this"),
662
ProblemFilters.exclude[DirectMissingMethodProblem]("org.apache.spark.executor.OutputMetrics.this")
663
+ ) ++ Seq(
664
+ // [SPARK-4452][Core]Shuffle data structures can starve others on the same thread for memory
665
+ ProblemFilters.exclude[IncompatibleTemplateDefProblem]("org.apache.spark.util.collection.Spillable")
666
)
667
case v if v.startsWith("1.6") =>
668
Seq(
0 commit comments