This is an automated email from the ASF dual-hosted git repository.
dongjoon pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/spark.git
The following commit(s) were added to refs/heads/master by this push:
new f8211120112 [SPARK-44863][UI][FOLLOWUP] Move Mima rules to v40excludes
f8211120112 is described below
commit f8211120112ca47de7daf72a778f74125e953997
Author: Kent Yao <[email protected]>
AuthorDate: Thu Aug 24 22:18:05 2023 -0700
[SPARK-44863][UI][FOLLOWUP] Move Mima rules to v40excludes
### What changes were proposed in this pull request?
Move Mima rules added by SPARK-44863 to v40excludes
### Why are the changes needed?
SPARK-44863 is targeting 4.0 eventually
### Does this PR introduce _any_ user-facing change?
no
### How was this patch tested?
mima tests
### Was this patch authored or co-authored using generative AI tooling?
no
Closes #42666 from yaooqinn/SPARK-44863-F.
Authored-by: Kent Yao <[email protected]>
Signed-off-by: Dongjoon Hyun <[email protected]>
---
project/MimaExcludes.scala | 8 ++++----
1 file changed, 4 insertions(+), 4 deletions(-)
diff --git a/project/MimaExcludes.scala b/project/MimaExcludes.scala
index 6200f24eed1..6bdf8d460e0 100644
--- a/project/MimaExcludes.scala
+++ b/project/MimaExcludes.scala
@@ -36,6 +36,9 @@ object MimaExcludes {
// Exclude rules for 4.0.x
lazy val v40excludes = v35excludes ++ Seq(
+ // [SPARK-44863][UI] Add a button to download thread dump as a txt in
Spark UI
+
ProblemFilters.exclude[DirectMissingMethodProblem]("org.apache.spark.status.api.v1.ThreadStackTrace.*"),
+
ProblemFilters.exclude[MissingTypesProblem]("org.apache.spark.status.api.v1.ThreadStackTrace$")
)
// Exclude rules for 3.5.x from 3.4.0
@@ -80,10 +83,7 @@ object MimaExcludes {
ProblemFilters.exclude[MissingClassProblem]("org.apache.spark.sql.SaveMode"),
ProblemFilters.exclude[MissingClassProblem]("org.apache.spark.sql.streaming.GroupState"),
// [SPARK-44705][PYTHON] Make PythonRunner single-threaded
-
ProblemFilters.exclude[IncompatibleMethTypeProblem]("org.apache.spark.api.python.BasePythonRunner#ReaderIterator.this"),
- // [SPARK-44863][UI] Add a button to download thread dump as a txt in
Spark UI
-
ProblemFilters.exclude[DirectMissingMethodProblem]("org.apache.spark.status.api.v1.ThreadStackTrace.*"),
-
ProblemFilters.exclude[MissingTypesProblem]("org.apache.spark.status.api.v1.ThreadStackTrace$")
+
ProblemFilters.exclude[IncompatibleMethTypeProblem]("org.apache.spark.api.python.BasePythonRunner#ReaderIterator.this")
)
// Default exclude rules
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]