danny0405 commented on code in PR #13334:
URL: https://github.com/apache/hudi/pull/13334#discussion_r2110638298


##########
hudi-common/src/main/java/org/apache/hudi/common/util/HoodieRecordUtils.java:
##########
@@ -85,11 +88,21 @@ public static HoodieRecordMerger createRecordMerger(String 
basePath, EngineType
   }
 
   public static Option<HoodieRecordMerger> createValidRecordMerger(EngineType 
engineType,
-                                                                   String 
mergerImpls, String recordMergerStrategy) {
-    if 
(recordMergerStrategy.equals(HoodieRecordMerger.PAYLOAD_BASED_MERGE_STRATEGY_UUID))
 {
-      return Option.of(HoodieAvroRecordMerger.INSTANCE);
+                                                                   String 
mergerImpls,
+                                                                   String 
recordMergerStrategy) {
+    switch (recordMergerStrategy) {
+      case HoodieRecordMerger.FIRST_VALUE_MERGE_STRATEGY_UUID:

Review Comment:
   +1, one solution is we just use the `CUSTOM_MERGE_STRATEGY_UUID` plus the 
merger class to infer the merger, the strategy id is not user config friendly. 
Otherwise we could have same account of strategy id for every built-in merger 
class.



-- 
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: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to