LinMingQiang commented on code in PR #4884:
URL: https://github.com/apache/paimon/pull/4884#discussion_r1951894438
##########
paimon-common/src/main/java/org/apache/paimon/CoreOptions.java:
##########
@@ -3226,4 +3311,31 @@ public String toString() {
return value;
}
}
+
+ /** Actions performed during table writing. */
+ public enum WriteAction {
+
+ // All write actions will be performed, this is the default behavior.
+ ALL("all"),
+
+ // Actions during commit.
+ PARTITION_EXPIRE("partition-expire"),
+ SNAPSHOT_EXPIRE("snapshot-expire"),
+ TAG_AUTOMATIC_CREATION("tag-automatic-creation"),
+
+ // Actions during writing.
+ MINOR_COMPACT("minor-compact"),
Review Comment:
We can only keep `full-compact` and `minor-compact` action can be removed.
`minor-compact` keep the original default logic.
--
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]