You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@flink.apache.org by "Ted Yu (JIRA)" <ji...@apache.org> on 2016/11/02 22:06:58 UTC

[jira] [Created] (FLINK-5002) Lack of synchronization in LocalBufferPool#getNumberOfUsedBuffers

Ted Yu created FLINK-5002:
-----------------------------

             Summary: Lack of synchronization in LocalBufferPool#getNumberOfUsedBuffers
                 Key: FLINK-5002
                 URL: https://issues.apache.org/jira/browse/FLINK-5002
             Project: Flink
          Issue Type: Bug
            Reporter: Ted Yu
            Priority: Minor


{code}
  public int getNumberOfUsedBuffers() {
    return numberOfRequestedMemorySegments - availableMemorySegments.size();
  }
{code}
Access to availableMemorySegments should be protected with proper synchronization as other methods do.



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)