This is an automated email from the ASF dual-hosted git repository.
dwysakowicz pushed a commit to branch release-1.14
in repository https://gitbox.apache.org/repos/asf/flink.git
The following commit(s) were added to refs/heads/release-1.14 by this push:
new 1ad53cf [hotfix] Fix a typo in 'estimatedTimeToConsume(r)BuffersMs'
1ad53cf is described below
commit 1ad53cfeb79dd27bc7fb9912dab9864f29a1ce01
Author: Dawid Wysakowicz <[email protected]>
AuthorDate: Thu Sep 16 08:58:50 2021 +0200
[hotfix] Fix a typo in 'estimatedTimeToConsume(r)BuffersMs'
---
docs/content.zh/docs/ops/metrics.md | 2 +-
docs/content/docs/deployment/memory/network_mem_tuning.md | 2 +-
docs/content/docs/ops/metrics.md | 2 +-
.../src/main/java/org/apache/flink/runtime/metrics/MetricNames.java | 2 +-
4 files changed, 4 insertions(+), 4 deletions(-)
diff --git a/docs/content.zh/docs/ops/metrics.md
b/docs/content.zh/docs/ops/metrics.md
index 256c15b..58d3e93 100644
--- a/docs/content.zh/docs/ops/metrics.md
+++ b/docs/content.zh/docs/ops/metrics.md
@@ -1276,7 +1276,7 @@ Certain RocksDB native metrics are available but disabled
by default, you can fi
</tr>
<tr>
<td rowspan="2"><strong>Task (only if buffer debloating is enabled and
in non-source tasks)</strong></td>
- <td>estimatedTimeToConsumerBuffersMs</td>
+ <td>estimatedTimeToConsumeBuffersMs</td>
<td>The estimated time (in milliseconds) by the buffer debloater to
consume all of the buffered data in the network exchange preceding this task.
This value is calculated by approximated amount of the in-flight data and
calculated throughput.</td>
<td>Gauge</td>
</tr>
diff --git a/docs/content/docs/deployment/memory/network_mem_tuning.md
b/docs/content/docs/deployment/memory/network_mem_tuning.md
index 9480053..1f84f9b 100644
--- a/docs/content/docs/deployment/memory/network_mem_tuning.md
+++ b/docs/content/docs/deployment/memory/network_mem_tuning.md
@@ -67,7 +67,7 @@ firing windowed aggregations or joins), you might need to
adjust the following s
Consult the [configuration]({{< ref "docs/deployment/config"
>}}#full-taskmanageroptions) documentation for more details and additional
parameters.
Here are [metrics]({{< ref "docs/ops/metrics" >}}#io) you can use to monitor
the current buffer size:
-* `estimatedTimeToConsumerBuffersMs` - total time to consume data from all
input channels
+* `estimatedTimeToConsumeBuffersMs` - total time to consume data from all
input channels
* `debloatedBufferSize` - current buffer size
### Limitations
diff --git a/docs/content/docs/ops/metrics.md b/docs/content/docs/ops/metrics.md
index 1580136..354669d 100644
--- a/docs/content/docs/ops/metrics.md
+++ b/docs/content/docs/ops/metrics.md
@@ -1275,7 +1275,7 @@ Certain RocksDB native metrics are available but disabled
by default, you can fi
</tr>
<tr>
<td rowspan="2"><strong>Task (only if buffer debloating is enabled and
in non-source tasks)</strong></td>
- <td>estimatedTimeToConsumerBuffersMs</td>
+ <td>estimatedTimeToConsumeBuffersMs</td>
<td>The estimated time (in milliseconds) by the buffer debloater to
consume all of the buffered data in the network exchange preceding this task.
This value is calculated by approximated amount of the in-flight data and
calculated throughput.</td>
<td>Gauge</td>
</tr>
diff --git
a/flink-runtime/src/main/java/org/apache/flink/runtime/metrics/MetricNames.java
b/flink-runtime/src/main/java/org/apache/flink/runtime/metrics/MetricNames.java
index 56c3f2e..56543e5 100644
---
a/flink-runtime/src/main/java/org/apache/flink/runtime/metrics/MetricNames.java
+++
b/flink-runtime/src/main/java/org/apache/flink/runtime/metrics/MetricNames.java
@@ -73,7 +73,7 @@ public class MetricNames {
public static final String TASK_BACK_PRESSURED_TIME =
"backPressuredTimeMs" + SUFFIX_RATE;
public static final String ESTIMATED_TIME_TO_CONSUME_BUFFERS =
- "estimatedTimeToConsumerBuffersMs";
+ "estimatedTimeToConsumeBuffersMs";
public static final String DEBLOATED_BUFFER_SIZE = "debloatedBufferSize";
// FLIP-33 sink