[
https://issues.apache.org/jira/browse/FLINK-4923?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=15607950#comment-15607950
]
ASF GitHub Bot commented on FLINK-4923:
---------------------------------------
Github user StephanEwen commented on a diff in the pull request:
https://github.com/apache/flink/pull/2693#discussion_r85080051
--- Diff:
flink-runtime/src/main/java/org/apache/flink/runtime/io/network/partition/consumer/SingleInputGate.java
---
@@ -222,6 +226,20 @@ public int getPageSize() {
}
}
+ public int getNumberOfQueuedBuffers() {
+ int totalBuffers = 0;
+
+ for (Map.Entry<IntermediateResultPartitionID, InputChannel>
entry: inputChannels.entrySet()) {
--- End diff --
I think this map may change asynchronously, so it is probably better to
catch exceptions here and re-try for some times. It it fails three times,
return `-1` for "unknown"
> Expose input/output buffers and bufferPool usage as a metric for a Task
> -----------------------------------------------------------------------
>
> Key: FLINK-4923
> URL: https://issues.apache.org/jira/browse/FLINK-4923
> Project: Flink
> Issue Type: Improvement
> Components: Metrics
> Reporter: zhuhaifeng
> Assignee: zhuhaifeng
> Priority: Minor
> Fix For: 1.2.0
>
>
> We should expose the following Metrics on the TaskIOMetricGroup:
> 1. Buffers.numIn: received buffers of InputGates for a task
> 2. Buffers.numOut: buffers of produced ResultPartitions for a task
> 3. Buffers.InPoolUsage: usage of InputGates buffer pool for a task
> 4. Buffers.OutPoolUsage: usage of produced ResultPartitions buffer pool for
> a task
--
This message was sent by Atlassian JIRA
(v6.3.4#6332)