This is an automated email from the ASF dual-hosted git repository.
gurwls223 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 7f76d57fa41 [SPARK-41497][CORE][FOLLOW UP] Modify config
`spark.rdd.cache.visibilityTracking.enabled` support version to 3.5.0
7f76d57fa41 is described below
commit 7f76d57fa41f97de8be05a43bdef4e997778eeb2
Author: Tengfei Huang <[email protected]>
AuthorDate: Mon Mar 6 09:43:37 2023 +0900
[SPARK-41497][CORE][FOLLOW UP] Modify config
`spark.rdd.cache.visibilityTracking.enabled` support version to 3.5.0
### What changes were proposed in this pull request?
In #39459 we introduced a new config entry
`spark.rdd.cache.visibilityTracking.enabled` and mark the support version as
3.4.0. Based on the discussion
https://github.com/apache/spark/pull/39459#discussion_r1123978338 we won't
backport this to 3.4, so modify the support version for the new added config
entry to 3.5.0
### Why are the changes needed?
Fixing config entry support version.
### Does this PR introduce _any_ user-facing change?
No
### How was this patch tested?
Existing UT.
Closes #40281 from ivoson/SPARK-41497-followup.
Authored-by: Tengfei Huang <[email protected]>
Signed-off-by: Hyukjin Kwon <[email protected]>
---
core/src/main/scala/org/apache/spark/internal/config/package.scala | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/core/src/main/scala/org/apache/spark/internal/config/package.scala
b/core/src/main/scala/org/apache/spark/internal/config/package.scala
index 84332b9cee4..99f9b78c09b 100644
--- a/core/src/main/scala/org/apache/spark/internal/config/package.scala
+++ b/core/src/main/scala/org/apache/spark/internal/config/package.scala
@@ -2476,7 +2476,7 @@ package object config {
" a RDD cache block can be used only when it's marked as visible. And
a RDD block will be" +
" marked as visible only when one of the tasks generating the cache
block finished" +
" successfully. This is relevant in context of consistent accumulator
status.")
- .version("3.4.0")
+ .version("3.5.0")
.booleanConf
.createWithDefault(false)
}
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]