yihua commented on code in PR #13007: URL: https://github.com/apache/hudi/pull/13007#discussion_r2019149464
########## hudi-client/hudi-client-common/src/main/java/org/apache/hudi/client/BaseHoodieWriteClient.java: ########## @@ -230,10 +230,11 @@ public boolean commitStats(String instantTime, List<HoodieWriteStat> stats, LOG.info("Committing " + instantTime + " action " + commitActionType); // Create a Hoodie table which encapsulated the commits and files visible HoodieTable table = createTable(config); - HoodieCommitMetadata metadata = CommitUtils.buildMetadata(stats, partitionToReplaceFileIds, + HoodieCommitMetadata oriMetadata = CommitUtils.buildMetadata(stats, partitionToReplaceFileIds, extraMetadata, operationType, config.getWriteSchema(), commitActionType); HoodieInstant inflightInstant = table.getMetaClient().createNewInstant(State.INFLIGHT, commitActionType, instantTime); HeartbeatUtils.abortIfHeartbeatExpired(instantTime, table, heartbeatClient, config); + HoodieCommitMetadata metadata = reconcileMetadata(table, commitActionType, instantTime, oriMetadata); Review Comment: Filed HUDI-9241 for follow-up. Without consistency, it's error-prone and hard to reason. -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: commits-unsubscr...@hudi.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org