This is an automated email from the ASF dual-hosted git repository.
yihua pushed a commit to branch branch-0.x
in repository https://gitbox.apache.org/repos/asf/hudi.git
The following commit(s) were added to refs/heads/branch-0.x by this push:
new 44858ad380f [HUDI-712] Revert back to overwrite=true in
HoodieSnapshotExporter (#11746)
44858ad380f is described below
commit 44858ad380f784655b44a0d835a71a9d60cb6340
Author: Gatsby Lee <[email protected]>
AuthorDate: Fri Aug 9 15:38:49 2024 -0700
[HUDI-712] Revert back to overwrite=true in HoodieSnapshotExporter (#11746)
---
.../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 00463433500..1be64ed9d91 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
@@ -242,7 +242,7 @@ public class HoodieSnapshotExporter {
executorOutputFs,
new Path(toPartitionPath, sourceFilePath.getName()),
false,
- false,
+ true,
executorOutputFs.getConf());
}, parallelism);
@@ -273,7 +273,7 @@ public class HoodieSnapshotExporter {
executorOutputFs,
targetFilePath,
false,
- false,
+ true,
executorOutputFs.getConf());
}, parallelism);
}