HDFS-10617. PendingReconstructionBlocks.size() should be synchronized. Contributed by Eric Badger.

This commit is contained in:
Kihwal Lee 2016-07-13 22:03:48 -05:00
parent b95f1af8a9
commit dba8eee899

View File

@ -134,8 +134,10 @@ public void clear() {
* The total number of blocks that are undergoing replication * The total number of blocks that are undergoing replication
*/ */
int size() { int size() {
synchronized(pendingReplications) {
return pendingReplications.size(); return pendingReplications.size();
} }
}
/** /**
* How many copies of this block is pending replication? * How many copies of this block is pending replication?