Aitozi commented on a change in pull request #8559: [FLINK-12576][Network,
Metrics]Take localInputChannel into account when compute inputQueueLength
URL: https://github.com/apache/flink/pull/8559#discussion_r301983564
##########
File path:
flink-runtime/src/main/java/org/apache/flink/runtime/io/network/partition/consumer/SingleInputGate.java
##########
@@ -273,6 +273,8 @@ public int getNumberOfQueuedBuffers() {
for (InputChannel channel :
inputChannels.values()) {
if (channel instanceof
RemoteInputChannel) {
totalBuffers +=
((RemoteInputChannel) channel).getNumberOfQueuedBuffers();
+ } else if (channel instanceof
LocalInputChannel) {
Review comment:
Agree! So i keep use the `unsynchronized` method style.
----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
For queries about this service, please contact Infrastructure at:
[email protected]
With regards,
Apache Git Services