Skip to content

Commit

Permalink
[hotfix] Fix a typo in 'estimatedTimeToConsume(r)BuffersMs'
Browse files Browse the repository at this point in the history
  • Loading branch information
dawidwys committed Sep 16, 2021
1 parent 5165205 commit d18911d
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion docs/content.zh/docs/ops/metrics.md
Original file line number Diff line number Diff line change
Expand Up @@ -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>
Expand Down
2 changes: 1 addition & 1 deletion docs/content/docs/deployment/memory/network_mem_tuning.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion docs/content/docs/ops/metrics.md
Original file line number Diff line number Diff line change
Expand Up @@ -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>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ public static String currentInputWatermarkName(int index) {
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
Expand Down

0 comments on commit d18911d

Please sign in to comment.