This is an automated email from the ASF dual-hosted git repository.
danny0405 pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/hudi.git
The following commit(s) were added to refs/heads/master by this push:
new a5bd50c067f [MINOR] Disable schema validation in master (#8781)
a5bd50c067f is described below
commit a5bd50c067f2a82be2470d4649f2be3007404c40
Author: Jon Vexler <[email protected]>
AuthorDate: Tue May 23 03:54:42 2023 -0400
[MINOR] Disable schema validation in master (#8781)
Co-authored-by: Jonathan Vexler <=>
---
.../src/main/java/org/apache/hudi/config/HoodieWriteConfig.java | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git
a/hudi-client/hudi-client-common/src/main/java/org/apache/hudi/config/HoodieWriteConfig.java
b/hudi-client/hudi-client-common/src/main/java/org/apache/hudi/config/HoodieWriteConfig.java
index 27802f8ccf3..e013da5f3a1 100644
---
a/hudi-client/hudi-client-common/src/main/java/org/apache/hudi/config/HoodieWriteConfig.java
+++
b/hudi-client/hudi-client-common/src/main/java/org/apache/hudi/config/HoodieWriteConfig.java
@@ -243,7 +243,7 @@ public class HoodieWriteConfig extends HoodieConfig {
public static final ConfigProperty<String> AVRO_SCHEMA_VALIDATE_ENABLE =
ConfigProperty
.key("hoodie.avro.schema.validate")
- .defaultValue("true")
+ .defaultValue("false")
.markAdvanced()
.withDocumentation("Validate the schema used for the write against the
latest schema, for backwards compatibility.");