From fe4790fdf6243a3f948beb9835a8871adcea753e Mon Sep 17 00:00:00 2001 From: yuzelin Date: Thu, 20 Jun 2024 14:22:40 +0800 Subject: [PATCH] [common] Explain tag.num-retained-max --- .../src/main/java/org/apache/paimon/CoreOptions.java | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/paimon-common/src/main/java/org/apache/paimon/CoreOptions.java b/paimon-common/src/main/java/org/apache/paimon/CoreOptions.java index 5e8ebb264cc1..36a2a2af2946 100644 --- a/paimon-common/src/main/java/org/apache/paimon/CoreOptions.java +++ b/paimon-common/src/main/java/org/apache/paimon/CoreOptions.java @@ -1057,13 +1057,16 @@ public class CoreOptions implements Serializable { key("tag.num-retained-max") .intType() .noDefaultValue() - .withDescription("The maximum number of tags to retain."); + .withDescription( + "The maximum number of tags to retain. It only affects auto-created tags."); public static final ConfigOption TAG_DEFAULT_TIME_RETAINED = key("tag.default-time-retained") .durationType() .noDefaultValue() - .withDescription("The default maximum time retained for newly created tags."); + .withDescription( + "The default maximum time retained for newly created tags. " + + "It affects both auto-created tags and manually created (by procedure) tags."); public static final ConfigOption SNAPSHOT_WATERMARK_IDLE_TIMEOUT = key("snapshot.watermark-idle-timeout")