Skip to content

Commit

Permalink
[common] Explain tag.num-retained-max
Browse files Browse the repository at this point in the history
  • Loading branch information
yuzelin committed Jun 20, 2024
1 parent 6a10931 commit fe4790f
Showing 1 changed file with 5 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -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<Duration> 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<Duration> SNAPSHOT_WATERMARK_IDLE_TIMEOUT =
key("snapshot.watermark-idle-timeout")
Expand Down

0 comments on commit fe4790f

Please sign in to comment.