dailai commented on code in PR #7834:
URL: https://github.com/apache/seatunnel/pull/7834#discussion_r1805662162


##########
seatunnel-connectors-v2/connector-paimon/src/main/java/org/apache/seatunnel/connectors/seatunnel/paimon/sink/PaimonSinkWriter.java:
##########
@@ -224,4 +250,17 @@ public void close() throws IOException {
             committables.clear();
         }
     }
+
+    private boolean waitCompaction() {
+        CoreOptions.ChangelogProducer changelogProducer =
+                this.table.coreOptions().changelogProducer();
+        return changelogProducer == CoreOptions.ChangelogProducer.LOOKUP
+                || changelogProducer == 
CoreOptions.ChangelogProducer.FULL_COMPACTION;
+    }
+
+    public static String[] splitPaths(@Nonnull String separatedPaths) {

Review Comment:
   This method is already in org.apache.paimon.disk.IOManagerImpl#splitPaths. 
You can directly import it.



-- 
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