HDDS-661. When a volume fails in datanode, VersionEndpointTask#call ends up in dead lock. Contributed by Hanisha Koneru.

This commit is contained in:
Nandakumar 2018-10-17 18:44:05 +05:30
parent 50715c0699
commit d54f5598f4
1 changed files with 3 additions and 3 deletions

View File

@ -75,7 +75,7 @@ public class VersionEndpointTask implements
// Check volumes
VolumeSet volumeSet = ozoneContainer.getVolumeSet();
volumeSet.readLock();
volumeSet.writeLock();
try {
Map<String, HddsVolume> volumeMap = volumeSet.getVolumeMap();
@ -94,12 +94,12 @@ public class VersionEndpointTask implements
}
}
if (volumeSet.getVolumesList().size() == 0) {
// All volumes are inconsistent state
// All volumes are in inconsistent state
throw new DiskOutOfSpaceException("All configured Volumes are in " +
"Inconsistent State");
}
} finally {
volumeSet.readUnlock();
volumeSet.writeUnlock();
}
ozoneContainer.getDispatcher().setScmId(scmId);