wsry commented on a change in pull request #11567: [FLINK-16645] Limit the
maximum backlogs in subpartitions
URL: https://github.com/apache/flink/pull/11567#discussion_r402718528
##########
File path:
flink-runtime/src/main/java/org/apache/flink/runtime/io/network/partition/PipelinedSubpartition.java
##########
@@ -355,6 +356,7 @@ private void increaseBuffersInBacklog(BufferConsumer
buffer) {
if (buffer != null && buffer.isBuffer()) {
buffersInBacklog++;
+ parent.notifyIncreaseBacklog(buffersInBacklog);
Review comment:
the above two lines can be replaced with:
```parent.notifyDecreaseBacklog(++buffersInBacklog);```
----------------------------------------------------------------
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