GitHub user dongjoon-hyun opened a pull request: https://github.com/apache/spark/pull/11669
[SPARK-XXX][BUILD] Update MiMa plugin to 0.1.9. ## What changes were proposed in this pull request? NOTE: Apache JIRA is down now. I'll update the title as soon as possible. This PR upgrades MiMa plugin to get bug fixes and new feature (forward compatibility) for future usage. During upgrade, this PRfixes the following MiMa error. ``` [info] spark-core: found 1 potential binary incompatibilities while checking against org.apache.spark:spark-core_2.11:1.6.0 (filtered 891) [error] * method this(java.lang.Object,org.apache.spark.AccumulatorParam,scala.Option,Boolean)Unit in class org.apache.spark.Accumulator does not have a correspondent in current version [error] filter with: ProblemFilters.exclude[DirectMissingMethodProblem]("org.apache.spark.Accumulator.this") ``` Note that the related excluding filter is already registered correctly. It seems due to the change of MiMa exception result. ``` // SPARK-12896 Send only accumulator updates to driver, not TaskMetrics ProblemFilters.exclude[IncompatibleMethTypeProblem]("org.apache.spark.Accumulable.this"), - ProblemFilters.exclude[IncompatibleMethTypeProblem]("org.apache.spark.Accumulator.this"), + ProblemFilters.exclude[DirectMissingMethodProblem]("org.apache.spark.Accumulator.this"), ``` ## How was this patch tested? Pass the Jenkins build. (MiMa is included.) You can merge this pull request into a Git repository by running: $ git pull https://github.com/dongjoon-hyun/spark update_mima Alternatively you can review and apply these changes as the patch at: https://github.com/apache/spark/pull/11669.patch To close this pull request, make a commit to your master/trunk branch with (at least) the following in the commit message: This closes #11669 ---- commit d3b5d423554354d935778adbd042155d8b1577d8 Author: Dongjoon Hyun <dongj...@apache.org> Date: 2016-03-11T23:55:23Z Update MIMA plugin to 0.1.9 and fix a missed problem. ---- --- If your project is set up for it, you can reply to this email and have your reply appear on GitHub as well. If your project does not have this feature enabled and wishes so, or if the feature is enabled but not working, please contact infrastructure at infrastruct...@apache.org or file a JIRA ticket with INFRA. --- --------------------------------------------------------------------- To unsubscribe, e-mail: reviews-unsubscr...@spark.apache.org For additional commands, e-mail: reviews-h...@spark.apache.org