Skip to content

Commit cbf39c0

Browse files
committed
[Clean up] Remove redundant mentioning of default values
1 parent ea579fa commit cbf39c0

File tree

2 files changed

+6
-7
lines changed

2 files changed

+6
-7
lines changed

fluss-common/src/main/java/com/alibaba/fluss/config/ConfigOptions.java

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -676,8 +676,7 @@ public class ConfigOptions {
676676
+ CLIENT_WRITER_BATCH_SIZE.key()
677677
+ " worth of rows for a bucket it will be sent immediately regardless of this setting, "
678678
+ "however if we have fewer than this many bytes accumulated for this bucket we will delay"
679-
+ " for the specified time waiting for more records to show up. This setting defaults "
680-
+ "to 100ms");
679+
+ " for the specified time waiting for more records to show up.");
681680

682681
public static final ConfigOption<NoKeyAssigner> CLIENT_WRITER_BUCKET_NO_KEY_ASSIGNER =
683682
key("client.writer.bucket.no-key-assigner")
@@ -763,7 +762,7 @@ public class ConfigOptions {
763762
+ CLIENT_WRITER_ENABLE_IDEMPOTENCE.key()
764763
+ " is set to true. When the number of inflight "
765764
+ "requests per bucket exceeds this setting, the writer will wait for the inflight "
766-
+ "requests to complete before sending out new requests. This setting defaults to 5");
765+
+ "requests to complete before sending out new requests.");
767766

768767
public static final ConfigOption<Duration> CLIENT_REQUEST_TIMEOUT =
769768
key("client.request-timeout")
@@ -1339,7 +1338,7 @@ public class ConfigOptions {
13391338
.stringType()
13401339
.defaultValue("9249")
13411340
.withDescription(
1342-
"The port the Prometheus reporter listens on, defaults to 9249. "
1341+
"The port the Prometheus reporter listens on."
13431342
+ "In order to be able to run several instances of the reporter "
13441343
+ "on one host (e.g. when one TabletServer is colocated with "
13451344
+ "the CoordinatorServer) it is advisable to use a port range "

0 commit comments

Comments
 (0)