This is an automated email from the ASF dual-hosted git repository.
zuston pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/uniffle.git
The following commit(s) were added to refs/heads/master by this push:
new 1f371e854 feat(spark): Make integrity validation disabled by default
(#2664)
1f371e854 is described below
commit 1f371e854314a92aaa115dedcfbb0e2194617f7b
Author: Junfan Zhang <[email protected]>
AuthorDate: Thu Nov 6 11:39:40 2025 +0800
feat(spark): Make integrity validation disabled by default (#2664)
### What changes were proposed in this pull request?
Make integrity validation disabled by default
### Why are the changes needed?
this feature is still in experimental
### Does this PR introduce _any_ user-facing change?
No.
### How was this patch tested?
Needn't
---
.../common/src/main/java/org/apache/spark/shuffle/RssSparkConfig.java | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git
a/client-spark/common/src/main/java/org/apache/spark/shuffle/RssSparkConfig.java
b/client-spark/common/src/main/java/org/apache/spark/shuffle/RssSparkConfig.java
index a17fa57bd..5eef97bfa 100644
---
a/client-spark/common/src/main/java/org/apache/spark/shuffle/RssSparkConfig.java
+++
b/client-spark/common/src/main/java/org/apache/spark/shuffle/RssSparkConfig.java
@@ -42,7 +42,7 @@ public class RssSparkConfig {
public static final ConfigOption<Boolean>
RSS_CLIENT_INTEGRITY_VALIDATION_ENABLED =
ConfigOptions.key("rss.client.integrityValidation.enabled")
.booleanType()
- .defaultValue(true)
+ .defaultValue(false)
.withDescription(
"Whether or not to enable shuffle data integrity validation
mechanism (spark version >= 3.5.0)");