You are viewing a plain text version of this content. The canonical link for it is here.
Posted to hdfs-dev@hadoop.apache.org by "Ted Yu (JIRA)" <ji...@apache.org> on 2014/08/02 15:36:11 UTC

[jira] [Created] (HDFS-6810) storageMap is accessed without proper synchronization in DatanodeDescriptor#getStorageReports

Ted Yu created HDFS-6810:
----------------------------

             Summary: storageMap is accessed without proper synchronization in DatanodeDescriptor#getStorageReports
                 Key: HDFS-6810
                 URL: https://issues.apache.org/jira/browse/HDFS-6810
             Project: Hadoop HDFS
          Issue Type: Bug
            Reporter: Ted Yu
            Priority: Minor


Here is related code:
{code}
  public StorageReport[] getStorageReports() {
    final StorageReport[] reports = new StorageReport[storageMap.size()];
{code}
Other methods use the following construct:
{code}
    synchronized (storageMap) {
{code}



--
This message was sent by Atlassian JIRA
(v6.2#6252)