SteNicholas commented on code in PR #262:
URL: https://github.com/apache/flink-table-store/pull/262#discussion_r964342264
##########
flink-table-store-core/src/main/java/org/apache/flink/table/store/file/compact/CompactManager.java:
##########
@@ -40,14 +42,28 @@ public CompactManager(ExecutorService executor) {
this.executor = executor;
}
+ /** Should wait compaction finish. */
+ public abstract boolean shouldWaitCompaction();
+
+ /** Add a new file. */
+ public abstract void addNewFile(DataFileMeta file);
+
/** Submit a new compaction task. */
Review Comment:
```suggestion
/** Trigger a new compaction task. */
```
--
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]