HDFS-12556: [SPS] : Block movement analysis should be done in read lock.
This commit is contained in:
parent
00eceed233
commit
5780f0624d
|
@ -242,12 +242,25 @@ public class StoragePolicySatisfier implements Runnable {
|
|||
ItemInfo itemInfo = storageMovementNeeded.get();
|
||||
if (itemInfo != null) {
|
||||
long trackId = itemInfo.getTrackId();
|
||||
BlockCollection blockCollection =
|
||||
namesystem.getBlockCollection(trackId);
|
||||
// Check blockCollectionId existence.
|
||||
BlockCollection blockCollection;
|
||||
BlocksMovingAnalysis status = null;
|
||||
try {
|
||||
namesystem.readLock();
|
||||
blockCollection = namesystem.getBlockCollection(trackId);
|
||||
// Check blockCollectionId existence.
|
||||
if (blockCollection == null) {
|
||||
// File doesn't exists (maybe got deleted), remove trackId from
|
||||
// the queue
|
||||
storageMovementNeeded.removeItemTrackInfo(itemInfo);
|
||||
} else {
|
||||
status =
|
||||
analyseBlocksStorageMovementsAndAssignToDN(
|
||||
blockCollection);
|
||||
}
|
||||
} finally {
|
||||
namesystem.readUnlock();
|
||||
}
|
||||
if (blockCollection != null) {
|
||||
BlocksMovingAnalysis status =
|
||||
analyseBlocksStorageMovementsAndAssignToDN(blockCollection);
|
||||
switch (status.status) {
|
||||
// Just add to monitor, so it will be retried after timeout
|
||||
case ANALYSIS_SKIPPED_FOR_RETRY:
|
||||
|
@ -283,10 +296,6 @@ public class StoragePolicySatisfier implements Runnable {
|
|||
storageMovementNeeded.removeItemTrackInfo(itemInfo);
|
||||
break;
|
||||
}
|
||||
} else {
|
||||
// File doesn't exists (maybe got deleted), remove trackId from
|
||||
// the queue
|
||||
storageMovementNeeded.removeItemTrackInfo(itemInfo);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
@ -72,7 +72,7 @@ public class TestPersistentStoragePolicySatisfier {
|
|||
{StorageType.DISK, StorageType.ARCHIVE, StorageType.SSD}
|
||||
};
|
||||
|
||||
private final int timeout = 300000;
|
||||
private final int timeout = 90000;
|
||||
|
||||
/**
|
||||
* Setup environment for every test case.
|
||||
|
|
Loading…
Reference in New Issue