This is an automated email from the ASF dual-hosted git repository.

xushiyan 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 ad10bd4e040 [HUDI-712] Revert back to overwrite=true in 
HoodieSnapshotExporter (#11668)
ad10bd4e040 is described below

commit ad10bd4e04085981a91030df0b3b8fde936844d1
Author: Gatsby Lee <[email protected]>
AuthorDate: Mon Jul 22 13:20:37 2024 -0700

    [HUDI-712] Revert back to overwrite=true in HoodieSnapshotExporter (#11668)
---
 .../main/java/org/apache/hudi/utilities/HoodieSnapshotExporter.java   | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git 
a/hudi-utilities/src/main/java/org/apache/hudi/utilities/HoodieSnapshotExporter.java
 
b/hudi-utilities/src/main/java/org/apache/hudi/utilities/HoodieSnapshotExporter.java
index e229ae08141..2faccb03192 100644
--- 
a/hudi-utilities/src/main/java/org/apache/hudi/utilities/HoodieSnapshotExporter.java
+++ 
b/hudi-utilities/src/main/java/org/apache/hudi/utilities/HoodieSnapshotExporter.java
@@ -274,7 +274,7 @@ public class HoodieSnapshotExporter {
           executorOutputFs,
           new Path(toPartitionPath, sourceFilePath.getName()),
           false,
-          false,
+          true,
           executorOutputFs.getConf());
     }, parallelism);
 
@@ -309,7 +309,7 @@ public class HoodieSnapshotExporter {
           executorOutputFs,
           targetFilePath,
           false,
-          false,
+          true,
           executorOutputFs.getConf());
     }, parallelism);
   }

Reply via email to