nsivabalan commented on code in PR #13046: URL: https://github.com/apache/hudi/pull/13046#discussion_r2019645784
########## hudi-client/hudi-client-common/src/main/java/org/apache/hudi/table/upgrade/SevenToEightUpgradeHandler.java: ########## @@ -178,23 +179,68 @@ static void upgradePartitionFields(HoodieWriteConfig config, HoodieTableConfig t } static void upgradeMergeMode(HoodieTableConfig tableConfig, Map<ConfigProperty, String> tablePropsToAdd) { - if (tableConfig.getPayloadClass() != null - && tableConfig.getPayloadClass().equals(OverwriteWithLatestAvroPayload.class.getName())) { - if (HoodieTableType.COPY_ON_WRITE == tableConfig.getTableType()) { + String payloadClass = tableConfig.getPayloadClass(); + String preCombineField = tableConfig.getPreCombineField(); + if (isCustomPayloadClass(payloadClass)) { + // This contains a special case: HoodieMetadataPayload. + tablePropsToAdd.put( + HoodieTableConfig.PAYLOAD_CLASS_NAME, + payloadClass); + tablePropsToAdd.put( + HoodieTableConfig.RECORD_MERGE_MODE, + RecordMergeMode.CUSTOM.name()); + tablePropsToAdd.put( + HoodieTableConfig.RECORD_MERGE_STRATEGY_ID, + HoodieRecordMerger.PAYLOAD_BASED_MERGE_STRATEGY_UUID); + } else if (StringUtils.nonEmpty(preCombineField)) { + // This contains a special case: OverwriteWithLatestPayload with preCombine field. + tablePropsToAdd.put( + HoodieTableConfig.PAYLOAD_CLASS_NAME, + DefaultHoodieRecordPayload.class.getName()); Review Comment: for COW, we will try to keep Commit time if its OverwriteWithLatest. (both precomb set or not) MOR: follow whats in the patch. lets relax and do warn log for payload mismatch during tbale config validation. also, during inference if there is payload mis-alignment -- 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