HDFS-8984. Move replication queues related methods in FSNamesystem to BlockManager. Contributed by Haohui Mai.

This commit is contained in:
Haohui Mai 2015-09-04 11:39:58 -07:00
parent 21178f0b1b
commit 67bce1e827
12 changed files with 80 additions and 65 deletions

View File

@ -549,6 +549,9 @@ Release 2.8.0 - UNRELEASED
HDFS-8384. Allow NN to startup if there are files having a lease but are not HDFS-8384. Allow NN to startup if there are files having a lease but are not
under construction. (jing9) under construction. (jing9)
HDFS-8984. Move replication queues related methods in FSNamesystem to
BlockManager. (wheat9)
OPTIMIZATIONS OPTIMIZATIONS
HDFS-8026. Trace FSOutputSummer#writeChecksumChunks rather than HDFS-8026. Trace FSOutputSummer#writeChecksumChunks rather than

View File

@ -71,6 +71,7 @@ import org.apache.hadoop.hdfs.server.namenode.CachedBlock;
import org.apache.hadoop.hdfs.server.namenode.NameNode; import org.apache.hadoop.hdfs.server.namenode.NameNode;
import org.apache.hadoop.hdfs.server.namenode.NameNode.OperationCategory; import org.apache.hadoop.hdfs.server.namenode.NameNode.OperationCategory;
import org.apache.hadoop.hdfs.server.namenode.Namesystem; import org.apache.hadoop.hdfs.server.namenode.Namesystem;
import org.apache.hadoop.hdfs.server.namenode.ha.HAContext;
import org.apache.hadoop.hdfs.server.namenode.metrics.NameNodeMetrics; import org.apache.hadoop.hdfs.server.namenode.metrics.NameNodeMetrics;
import org.apache.hadoop.hdfs.server.protocol.BlockCommand; import org.apache.hadoop.hdfs.server.protocol.BlockCommand;
import org.apache.hadoop.hdfs.server.protocol.BlockReportContext; import org.apache.hadoop.hdfs.server.protocol.BlockReportContext;
@ -126,6 +127,10 @@ public class BlockManager implements BlockStatsMXBean {
private volatile long corruptReplicaBlocksCount = 0L; private volatile long corruptReplicaBlocksCount = 0L;
private volatile long underReplicatedBlocksCount = 0L; private volatile long underReplicatedBlocksCount = 0L;
private volatile long scheduledReplicationBlocksCount = 0L; private volatile long scheduledReplicationBlocksCount = 0L;
/** flag indicating whether replication queues have been initialized */
private boolean initializedReplQueues;
private final AtomicLong excessBlocksCount = new AtomicLong(0L); private final AtomicLong excessBlocksCount = new AtomicLong(0L);
private final AtomicLong postponedMisreplicatedBlocksCount = new AtomicLong(0L); private final AtomicLong postponedMisreplicatedBlocksCount = new AtomicLong(0L);
private final long startupDelayBlockDeletionInMs; private final long startupDelayBlockDeletionInMs;
@ -1083,7 +1088,7 @@ public class BlockManager implements BlockStatsMXBean {
* datanode and log the operation * datanode and log the operation
*/ */
void addToInvalidates(final Block block, final DatanodeInfo datanode) { void addToInvalidates(final Block block, final DatanodeInfo datanode) {
if (!namesystem.isPopulatingReplQueues()) { if (!isPopulatingReplQueues()) {
return; return;
} }
invalidateBlocks.add(block, datanode, true); invalidateBlocks.add(block, datanode, true);
@ -1094,7 +1099,7 @@ public class BlockManager implements BlockStatsMXBean {
* datanodes. * datanodes.
*/ */
private void addToInvalidates(Block b) { private void addToInvalidates(Block b) {
if (!namesystem.isPopulatingReplQueues()) { if (!isPopulatingReplQueues()) {
return; return;
} }
StringBuilder datanodes = new StringBuilder(); StringBuilder datanodes = new StringBuilder();
@ -1115,7 +1120,7 @@ public class BlockManager implements BlockStatsMXBean {
* is wiped. * is wiped.
*/ */
void removeFromInvalidates(final DatanodeInfo datanode) { void removeFromInvalidates(final DatanodeInfo datanode) {
if (!namesystem.isPopulatingReplQueues()) { if (!isPopulatingReplQueues()) {
return; return;
} }
invalidateBlocks.remove(datanode); invalidateBlocks.remove(datanode);
@ -1202,7 +1207,7 @@ public class BlockManager implements BlockStatsMXBean {
|| corruptedDuringWrite) { || corruptedDuringWrite) {
// the block is over-replicated so invalidate the replicas immediately // the block is over-replicated so invalidate the replicas immediately
invalidateBlock(b, node); invalidateBlock(b, node);
} else if (namesystem.isPopulatingReplQueues()) { } else if (isPopulatingReplQueues()) {
// add the block to neededReplication // add the block to neededReplication
updateNeededReplications(b.getStored(), -1, 0); updateNeededReplications(b.getStored(), -1, 0);
} }
@ -2475,7 +2480,7 @@ public class BlockManager implements BlockStatsMXBean {
throws IOException { throws IOException {
assert (storedBlock != null && namesystem.hasWriteLock()); assert (storedBlock != null && namesystem.hasWriteLock());
if (!namesystem.isInStartupSafeMode() if (!namesystem.isInStartupSafeMode()
|| namesystem.isPopulatingReplQueues()) { || isPopulatingReplQueues()) {
addStoredBlock(storedBlock, storageInfo, null, false); addStoredBlock(storedBlock, storageInfo, null, false);
return; return;
} }
@ -2577,7 +2582,7 @@ public class BlockManager implements BlockStatsMXBean {
} }
// do not try to handle over/under-replicated blocks during first safe mode // do not try to handle over/under-replicated blocks during first safe mode
if (!namesystem.isPopulatingReplQueues()) { if (!isPopulatingReplQueues()) {
return storedBlock; return storedBlock;
} }
@ -3314,7 +3319,7 @@ public class BlockManager implements BlockStatsMXBean {
*/ */
void processOverReplicatedBlocksOnReCommission( void processOverReplicatedBlocksOnReCommission(
final DatanodeDescriptor srcNode) { final DatanodeDescriptor srcNode) {
if (!namesystem.isPopulatingReplQueues()) { if (!isPopulatingReplQueues()) {
return; return;
} }
final Iterator<BlockInfo> it = srcNode.getBlockIterator(); final Iterator<BlockInfo> it = srcNode.getBlockIterator();
@ -3408,7 +3413,7 @@ public class BlockManager implements BlockStatsMXBean {
final int curReplicasDelta, int expectedReplicasDelta) { final int curReplicasDelta, int expectedReplicasDelta) {
namesystem.writeLock(); namesystem.writeLock();
try { try {
if (!namesystem.isPopulatingReplQueues()) { if (!isPopulatingReplQueues()) {
return; return;
} }
NumberReplicas repl = countNodes(block); NumberReplicas repl = countNodes(block);
@ -3653,7 +3658,7 @@ public class BlockManager implements BlockStatsMXBean {
while (namesystem.isRunning()) { while (namesystem.isRunning()) {
try { try {
// Process replication work only when active NN is out of safe mode. // Process replication work only when active NN is out of safe mode.
if (namesystem.isPopulatingReplQueues()) { if (isPopulatingReplQueues()) {
computeDatanodeWork(); computeDatanodeWork();
processPendingReplications(); processPendingReplications();
rescanPostponedMisreplicatedBlocks(); rescanPostponedMisreplicatedBlocks();
@ -3781,4 +3786,35 @@ public class BlockManager implements BlockStatsMXBean {
public Map<StorageType, StorageTypeStats> getStorageTypeStats() { public Map<StorageType, StorageTypeStats> getStorageTypeStats() {
return datanodeManager.getDatanodeStatistics().getStorageTypeStats(); return datanodeManager.getDatanodeStatistics().getStorageTypeStats();
} }
/**
* Initialize replication queues.
*/
public void initializeReplQueues() {
LOG.info("initializing replication queues");
processMisReplicatedBlocks();
initializedReplQueues = true;
}
/**
* Check if replication queues are to be populated
* @return true when node is HAState.Active and not in the very first safemode
*/
public boolean isPopulatingReplQueues() {
if (!shouldPopulateReplQueues()) {
return false;
}
return initializedReplQueues;
}
public void setInitializedReplQueues(boolean v) {
this.initializedReplQueues = v;
}
public boolean shouldPopulateReplQueues() {
HAContext haContext = namesystem.getHAContext();
if (haContext == null || haContext.getState() == null)
return false;
return haContext.getState().shouldPopulateReplQueues();
}
} }

View File

@ -1199,7 +1199,7 @@ public class DatanodeManager {
if (!hasClusterEverBeenMultiRack && networktopology.getNumOfRacks() > 1) { if (!hasClusterEverBeenMultiRack && networktopology.getNumOfRacks() > 1) {
String message = "DN " + node + " joining cluster has expanded a formerly " + String message = "DN " + node + " joining cluster has expanded a formerly " +
"single-rack cluster to be multi-rack. "; "single-rack cluster to be multi-rack. ";
if (namesystem.isPopulatingReplQueues()) { if (blockManager.isPopulatingReplQueues()) {
message += "Re-checking all blocks for replication, since they should " + message += "Re-checking all blocks for replication, since they should " +
"now be replicated cross-rack"; "now be replicated cross-rack";
LOG.info(message); LOG.info(message);
@ -1209,7 +1209,7 @@ public class DatanodeManager {
LOG.debug(message); LOG.debug(message);
} }
hasClusterEverBeenMultiRack = true; hasClusterEverBeenMultiRack = true;
if (namesystem.isPopulatingReplQueues()) { if (blockManager.isPopulatingReplQueues()) {
blockManager.processMisReplicatedBlocks(); blockManager.processMisReplicatedBlocks();
} }
} }

View File

@ -570,7 +570,7 @@ public class DecommissionManager {
if (blockManager.isNeededReplication(block, liveReplicas)) { if (blockManager.isNeededReplication(block, liveReplicas)) {
if (!blockManager.neededReplications.contains(block) && if (!blockManager.neededReplications.contains(block) &&
blockManager.pendingReplications.getNumReplicas(block) == 0 && blockManager.pendingReplications.getNumReplicas(block) == 0 &&
namesystem.isPopulatingReplQueues()) { blockManager.isPopulatingReplQueues()) {
// Process these blocks only when active NN is out of safe mode. // Process these blocks only when active NN is out of safe mode.
blockManager.neededReplications.add(block, blockManager.neededReplications.add(block,
curReplicas, curReplicas,

View File

@ -495,9 +495,6 @@ public class FSNamesystem implements Namesystem, FSNamesystemMBean,
private final boolean haEnabled; private final boolean haEnabled;
/** flag indicating whether replication queues have been initialized */
boolean initializedReplQueues = false;
/** /**
* Whether the namenode is in the middle of starting the active service * Whether the namenode is in the middle of starting the active service
*/ */
@ -1030,7 +1027,7 @@ public class FSNamesystem implements Namesystem, FSNamesystemMBean,
try { try {
nnResourceChecker = new NameNodeResourceChecker(conf); nnResourceChecker = new NameNodeResourceChecker(conf);
checkAvailableResources(); checkAvailableResources();
assert safeMode != null && !isPopulatingReplQueues(); assert safeMode != null && !blockManager.isPopulatingReplQueues();
StartupProgress prog = NameNode.getStartupProgress(); StartupProgress prog = NameNode.getStartupProgress();
prog.beginPhase(Phase.SAFEMODE); prog.beginPhase(Phase.SAFEMODE);
long completeBlocksTotal = getCompleteBlocksTotal(); long completeBlocksTotal = getCompleteBlocksTotal();
@ -1097,7 +1094,7 @@ public class FSNamesystem implements Namesystem, FSNamesystemMBean,
// Only need to re-process the queue, If not in SafeMode. // Only need to re-process the queue, If not in SafeMode.
if (!isInSafeMode()) { if (!isInSafeMode()) {
LOG.info("Reprocessing replication and invalidation queues"); LOG.info("Reprocessing replication and invalidation queues");
initializeReplQueues(); blockManager.initializeReplQueues();
} }
if (LOG.isDebugEnabled()) { if (LOG.isDebugEnabled()) {
@ -1152,15 +1149,6 @@ public class FSNamesystem implements Namesystem, FSNamesystemMBean,
} }
} }
/**
* Initialize replication queues.
*/
private void initializeReplQueues() {
LOG.info("initializing replication queues");
blockManager.processMisReplicatedBlocks();
initializedReplQueues = true;
}
private boolean inActiveState() { private boolean inActiveState() {
return haContext != null && return haContext != null &&
haContext.getState().getServiceState() == HAServiceState.ACTIVE; haContext.getState().getServiceState() == HAServiceState.ACTIVE;
@ -1217,8 +1205,8 @@ public class FSNamesystem implements Namesystem, FSNamesystemMBean,
blockManager.getDatanodeManager().setShouldSendCachingCommands(false); blockManager.getDatanodeManager().setShouldSendCachingCommands(false);
// Don't want to keep replication queues when not in Active. // Don't want to keep replication queues when not in Active.
blockManager.clearQueues(); blockManager.clearQueues();
blockManager.setInitializedReplQueues(false);
} }
initializedReplQueues = false;
} finally { } finally {
writeUnlock(); writeUnlock();
} }
@ -4232,8 +4220,8 @@ public class FSNamesystem implements Namesystem, FSNamesystemMBean,
private synchronized void leave() { private synchronized void leave() {
// if not done yet, initialize replication queues. // if not done yet, initialize replication queues.
// In the standby, do not populate repl queues // In the standby, do not populate repl queues
if (!isPopulatingReplQueues() && shouldPopulateReplQueues()) { if (!blockManager.isPopulatingReplQueues() && blockManager.shouldPopulateReplQueues()) {
initializeReplQueues(); blockManager.initializeReplQueues();
} }
long timeInSafemode = now() - startTime; long timeInSafemode = now() - startTime;
NameNode.stateChangeLog.info("STATE* Leaving safe mode after " NameNode.stateChangeLog.info("STATE* Leaving safe mode after "
@ -4269,7 +4257,7 @@ public class FSNamesystem implements Namesystem, FSNamesystemMBean,
* initializing replication queues. * initializing replication queues.
*/ */
private synchronized boolean canInitializeReplQueues() { private synchronized boolean canInitializeReplQueues() {
return shouldPopulateReplQueues() return blockManager.shouldPopulateReplQueues()
&& blockSafe >= blockReplQueueThreshold; && blockSafe >= blockReplQueueThreshold;
} }
@ -4322,9 +4310,9 @@ public class FSNamesystem implements Namesystem, FSNamesystemMBean,
if (smmthread == null && needEnter()) { if (smmthread == null && needEnter()) {
enter(); enter();
// check if we are ready to initialize replication queues // check if we are ready to initialize replication queues
if (canInitializeReplQueues() && !isPopulatingReplQueues() if (canInitializeReplQueues() && !blockManager.isPopulatingReplQueues()
&& !haEnabled) { && !haEnabled) {
initializeReplQueues(); blockManager.initializeReplQueues();
} }
reportStatus("STATE* Safe mode ON.", false); reportStatus("STATE* Safe mode ON.", false);
return; return;
@ -4349,8 +4337,8 @@ public class FSNamesystem implements Namesystem, FSNamesystemMBean,
} }
// check if we are ready to initialize replication queues // check if we are ready to initialize replication queues
if (canInitializeReplQueues() && !isPopulatingReplQueues() && !haEnabled) { if (canInitializeReplQueues() && !blockManager.isPopulatingReplQueues() && !haEnabled) {
initializeReplQueues(); blockManager.initializeReplQueues();
} }
} }
@ -4653,24 +4641,6 @@ public class FSNamesystem implements Namesystem, FSNamesystemMBean,
&& safeMode.isOn(); && safeMode.isOn();
} }
/**
* Check if replication queues are to be populated
* @return true when node is HAState.Active and not in the very first safemode
*/
@Override
public boolean isPopulatingReplQueues() {
if (!shouldPopulateReplQueues()) {
return false;
}
return initializedReplQueues;
}
private boolean shouldPopulateReplQueues() {
if(haContext == null || haContext.getState() == null)
return false;
return haContext.getState().shouldPopulateReplQueues();
}
@Override @Override
public void incrementSafeBlockCount(int replication) { public void incrementSafeBlockCount(int replication) {
// safeMode is volatile, and may be set to null at any time // safeMode is volatile, and may be set to null at any time
@ -5488,7 +5458,7 @@ public class FSNamesystem implements Namesystem, FSNamesystemMBean,
readLock(); readLock();
try { try {
checkOperation(OperationCategory.READ); checkOperation(OperationCategory.READ);
if (!isPopulatingReplQueues()) { if (!blockManager.isPopulatingReplQueues()) {
throw new IOException("Cannot run listCorruptFileBlocks because " + throw new IOException("Cannot run listCorruptFileBlocks because " +
"replication queues have not been initialized."); "replication queues have not been initialized.");
} }
@ -6164,6 +6134,11 @@ public class FSNamesystem implements Namesystem, FSNamesystemMBean,
return cacheManager; return cacheManager;
} }
@Override
public HAContext getHAContext() {
return haContext;
}
@Override // NameNodeMXBean @Override // NameNodeMXBean
public String getCorruptFiles() { public String getCorruptFiles() {
List<String> list = new ArrayList<String>(); List<String> list = new ArrayList<String>();

View File

@ -41,6 +41,7 @@ import org.apache.hadoop.hdfs.HAUtil;
import org.apache.hadoop.hdfs.HdfsConfiguration; import org.apache.hadoop.hdfs.HdfsConfiguration;
import org.apache.hadoop.hdfs.protocol.ClientProtocol; import org.apache.hadoop.hdfs.protocol.ClientProtocol;
import org.apache.hadoop.hdfs.protocol.HdfsConstants; import org.apache.hadoop.hdfs.protocol.HdfsConstants;
import org.apache.hadoop.hdfs.server.blockmanagement.BlockManager;
import org.apache.hadoop.hdfs.server.common.HdfsServerConstants.NamenodeRole; import org.apache.hadoop.hdfs.server.common.HdfsServerConstants.NamenodeRole;
import org.apache.hadoop.hdfs.server.common.HdfsServerConstants.RollingUpgradeStartupOption; import org.apache.hadoop.hdfs.server.common.HdfsServerConstants.RollingUpgradeStartupOption;
import org.apache.hadoop.hdfs.server.common.HdfsServerConstants.StartupOption; import org.apache.hadoop.hdfs.server.common.HdfsServerConstants.StartupOption;

View File

@ -22,6 +22,7 @@ import org.apache.hadoop.hdfs.protocol.Block;
import org.apache.hadoop.hdfs.server.blockmanagement.BlockInfo; import org.apache.hadoop.hdfs.server.blockmanagement.BlockInfo;
import org.apache.hadoop.hdfs.server.blockmanagement.BlockCollection; import org.apache.hadoop.hdfs.server.blockmanagement.BlockCollection;
import org.apache.hadoop.hdfs.server.namenode.NameNode.OperationCategory; import org.apache.hadoop.hdfs.server.namenode.NameNode.OperationCategory;
import org.apache.hadoop.hdfs.server.namenode.ha.HAContext;
import org.apache.hadoop.hdfs.util.RwLock; import org.apache.hadoop.hdfs.util.RwLock;
import org.apache.hadoop.ipc.StandbyException; import org.apache.hadoop.ipc.StandbyException;
import org.apache.hadoop.security.AccessControlException; import org.apache.hadoop.security.AccessControlException;
@ -51,4 +52,5 @@ public interface Namesystem extends RwLock, SafeMode {
boolean isInSnapshot(BlockInfo blockUC); boolean isInSnapshot(BlockInfo blockUC);
CacheManager getCacheManager(); CacheManager getCacheManager();
HAContext getHAContext();
} }

View File

@ -39,9 +39,6 @@ public interface SafeMode {
*/ */
public boolean isInStartupSafeMode(); public boolean isInStartupSafeMode();
/** Check whether replication queues are being populated. */
public boolean isPopulatingReplQueues();
/** /**
* Increment number of blocks that reached minimal replication. * Increment number of blocks that reached minimal replication.
* @param replication current replication * @param replication current replication

View File

@ -1221,7 +1221,6 @@ public class TestReplicationPolicy {
public void testAddStoredBlockDoesNotCauseSkippedReplication() public void testAddStoredBlockDoesNotCauseSkippedReplication()
throws IOException { throws IOException {
Namesystem mockNS = mock(Namesystem.class); Namesystem mockNS = mock(Namesystem.class);
when(mockNS.isPopulatingReplQueues()).thenReturn(true);
when(mockNS.hasWriteLock()).thenReturn(true); when(mockNS.hasWriteLock()).thenReturn(true);
when(mockNS.hasReadLock()).thenReturn(true); when(mockNS.hasReadLock()).thenReturn(true);
BlockManager bm = new BlockManager(mockNS, new HdfsConfiguration()); BlockManager bm = new BlockManager(mockNS, new HdfsConfiguration());
@ -1271,7 +1270,6 @@ public class TestReplicationPolicy {
testConvertLastBlockToUnderConstructionDoesNotCauseSkippedReplication() testConvertLastBlockToUnderConstructionDoesNotCauseSkippedReplication()
throws IOException { throws IOException {
Namesystem mockNS = mock(Namesystem.class); Namesystem mockNS = mock(Namesystem.class);
when(mockNS.isPopulatingReplQueues()).thenReturn(true);
when(mockNS.hasReadLock()).thenReturn(true); when(mockNS.hasReadLock()).thenReturn(true);
BlockManager bm = new BlockManager(mockNS, new HdfsConfiguration()); BlockManager bm = new BlockManager(mockNS, new HdfsConfiguration());
@ -1334,7 +1332,6 @@ public class TestReplicationPolicy {
public void testupdateNeededReplicationsDoesNotCauseSkippedReplication() public void testupdateNeededReplicationsDoesNotCauseSkippedReplication()
throws IOException { throws IOException {
Namesystem mockNS = mock(Namesystem.class); Namesystem mockNS = mock(Namesystem.class);
when(mockNS.isPopulatingReplQueues()).thenReturn(true);
when(mockNS.hasReadLock()).thenReturn(true); when(mockNS.hasReadLock()).thenReturn(true);
BlockManager bm = new BlockManager(mockNS, new HdfsConfiguration()); BlockManager bm = new BlockManager(mockNS, new HdfsConfiguration());

View File

@ -243,7 +243,7 @@ public class NameNodeAdapter {
* @return Replication queue initialization status * @return Replication queue initialization status
*/ */
public static boolean safeModeInitializedReplQueues(NameNode nn) { public static boolean safeModeInitializedReplQueues(NameNode nn) {
return nn.getNamesystem().isPopulatingReplQueues(); return nn.getNamesystem().getBlockManager().isPopulatingReplQueues();
} }
public static File getInProgressEditsFile(StorageDirectory sd, long startTxId) { public static File getInProgressEditsFile(StorageDirectory sd, long startTxId) {

View File

@ -32,6 +32,7 @@ import org.apache.hadoop.fs.FileUtil;
import org.apache.hadoop.hdfs.DFSTestUtil; import org.apache.hadoop.hdfs.DFSTestUtil;
import org.apache.hadoop.hdfs.HdfsConfiguration; import org.apache.hadoop.hdfs.HdfsConfiguration;
import org.apache.hadoop.hdfs.MiniDFSCluster; import org.apache.hadoop.hdfs.MiniDFSCluster;
import org.apache.hadoop.hdfs.server.blockmanagement.BlockManager;
import org.apache.hadoop.hdfs.server.common.HdfsServerConstants.NamenodeRole; import org.apache.hadoop.hdfs.server.common.HdfsServerConstants.NamenodeRole;
import org.apache.hadoop.hdfs.server.namenode.ha.HAContext; import org.apache.hadoop.hdfs.server.namenode.ha.HAContext;
import org.apache.hadoop.hdfs.server.namenode.ha.HAState; import org.apache.hadoop.hdfs.server.namenode.ha.HAState;
@ -123,13 +124,15 @@ public class TestFSNamesystem {
FSNamesystem fsNamesystem = new FSNamesystem(conf, fsImage); FSNamesystem fsNamesystem = new FSNamesystem(conf, fsImage);
FSNamesystem fsn = Mockito.spy(fsNamesystem); FSNamesystem fsn = Mockito.spy(fsNamesystem);
BlockManager bm = fsn.getBlockManager();
Whitebox.setInternalState(bm, "namesystem", fsn);
//Make shouldPopulaeReplQueues return true //Make shouldPopulaeReplQueues return true
HAContext haContext = Mockito.mock(HAContext.class); HAContext haContext = Mockito.mock(HAContext.class);
HAState haState = Mockito.mock(HAState.class); HAState haState = Mockito.mock(HAState.class);
Mockito.when(haContext.getState()).thenReturn(haState); Mockito.when(haContext.getState()).thenReturn(haState);
Mockito.when(haState.shouldPopulateReplQueues()).thenReturn(true); Mockito.when(haState.shouldPopulateReplQueues()).thenReturn(true);
Whitebox.setInternalState(fsn, "haContext", haContext); Mockito.when(fsn.getHAContext()).thenReturn(haContext);
//Make NameNode.getNameNodeMetrics() not return null //Make NameNode.getNameNodeMetrics() not return null
NameNode.initMetrics(conf, NamenodeRole.NAMENODE); NameNode.initMetrics(conf, NamenodeRole.NAMENODE);
@ -137,15 +140,15 @@ public class TestFSNamesystem {
fsn.enterSafeMode(false); fsn.enterSafeMode(false);
assertTrue("FSNamesystem didn't enter safemode", fsn.isInSafeMode()); assertTrue("FSNamesystem didn't enter safemode", fsn.isInSafeMode());
assertTrue("Replication queues were being populated during very first " assertTrue("Replication queues were being populated during very first "
+ "safemode", !fsn.isPopulatingReplQueues()); + "safemode", !bm.isPopulatingReplQueues());
fsn.leaveSafeMode(); fsn.leaveSafeMode();
assertTrue("FSNamesystem didn't leave safemode", !fsn.isInSafeMode()); assertTrue("FSNamesystem didn't leave safemode", !fsn.isInSafeMode());
assertTrue("Replication queues weren't being populated even after leaving " assertTrue("Replication queues weren't being populated even after leaving "
+ "safemode", fsn.isPopulatingReplQueues()); + "safemode", bm.isPopulatingReplQueues());
fsn.enterSafeMode(false); fsn.enterSafeMode(false);
assertTrue("FSNamesystem didn't enter safemode", fsn.isInSafeMode()); assertTrue("FSNamesystem didn't enter safemode", fsn.isInSafeMode());
assertTrue("Replication queues weren't being populated after entering " assertTrue("Replication queues weren't being populated after entering "
+ "safemode 2nd time", fsn.isPopulatingReplQueues()); + "safemode 2nd time", bm.isPopulatingReplQueues());
} }
@Test @Test

View File

@ -210,7 +210,8 @@ public class TestListCorruptFileBlocks {
fs = cluster.getFileSystem(); fs = cluster.getFileSystem();
// wait until replication queues have been initialized // wait until replication queues have been initialized
while (!cluster.getNameNode().namesystem.isPopulatingReplQueues()) { while (!cluster.getNameNode().namesystem.getBlockManager()
.isPopulatingReplQueues()) {
try { try {
LOG.info("waiting for replication queues"); LOG.info("waiting for replication queues");
Thread.sleep(1000); Thread.sleep(1000);