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)