baiyangtx commented on code in PR #4884:
URL: https://github.com/apache/paimon/pull/4884#discussion_r2108769538
##########
paimon-common/src/main/java/org/apache/paimon/CoreOptions.java:
##########
@@ -3227,6 +3271,56 @@ public String toString() {
}
}
+ /** 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.
+ FULL_COMPACT("full-compact");
Review Comment:
Is it more reasonable to directly use "compact"?
From the implementation code, this parameter only controls the compact
behavior, while whether to perform a full compact or a minor compact is
controlled by other parameters.
--
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]