yuzelin commented on code in PR #1069:
URL: https://github.com/apache/incubator-paimon/pull/1069#discussion_r1185681025


##########
paimon-flink/paimon-flink-common/src/main/java/org/apache/paimon/flink/action/CompactAction.java:
##########
@@ -74,6 +77,12 @@ public CompactAction withPartitions(List<Map<String, 
String>> partitions) {
         return this;
     }
 
+    static Options getOptions(MultipleParameterTool params) {
+        Options options = new Options();
+        params.toMap().forEach((k, v) -> options.set(k, v));
+        return options;
+    }
+

Review Comment:
   How about using `catalog-conf k=v`?
   Like:
   
https://paimon.apache.org/docs/master/how-to/cdc-ingestion/#synchronizing-tables



-- 
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: issues-unsubscr...@paimon.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org

Reply via email to