Skip to content

Commit 5c50ad8

Browse files
author
chenyuzhi
committed
[FLINK-36876] Add doc for new configuration
1 parent adaa22a commit 5c50ad8

File tree

3 files changed

+13
-1
lines changed

3 files changed

+13
-1
lines changed

docs/layouts/shortcodes/generated/kubernetes_operator_config_configuration.html

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -140,6 +140,12 @@
140140
<td>Duration</td>
141141
<td>The timeout for the observer to wait the flink rest client to return.</td>
142142
</tr>
143+
<tr>
144+
<td><h5>kubernetes.operator.flink.client.io.threads</h5></td>
145+
<td style="word-wrap: break-word;">60</td>
146+
<td>Integer</td>
147+
<td>The maximum number of io threads used by the flink rest client.</td>
148+
</tr>
143149
<tr>
144150
<td><h5>kubernetes.operator.health.canary.resource.timeout</h5></td>
145151
<td style="word-wrap: break-word;">1 min</td>

docs/layouts/shortcodes/generated/system_section.html

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,12 @@
5050
<td>Duration</td>
5151
<td>The timeout for the observer to wait the flink rest client to return.</td>
5252
</tr>
53+
<tr>
54+
<td><h5>kubernetes.operator.flink.client.io.threads</h5></td>
55+
<td style="word-wrap: break-word;">60</td>
56+
<td>Integer</td>
57+
<td>The maximum number of io threads used by the flink rest client.</td>
58+
</tr>
5359
<tr>
5460
<td><h5>kubernetes.operator.leader-election.enabled</h5></td>
5561
<td style="word-wrap: break-word;">false</td>

flink-kubernetes-operator/src/main/java/org/apache/flink/kubernetes/operator/config/KubernetesOperatorConfigOptions.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -117,7 +117,7 @@ public static String operatorConfigKey(String key) {
117117

118118
@Documentation.Section(SECTION_SYSTEM)
119119
public static final ConfigOption<Integer> OPERATOR_FLINK_CLIENT_IO_THREADS =
120-
operatorConfig("kubernetes.operator.flink.client.io.threads")
120+
operatorConfig("flink.client.io.threads")
121121
.intType()
122122
.defaultValue(60)
123123
.withDescription(

0 commit comments

Comments
 (0)