|
@@ -17,14 +17,14 @@
|
|
|
*/
|
|
|
package org.apache.hadoop.hdfs.server.namenode;
|
|
|
|
|
|
+import static org.junit.Assert.*;
|
|
|
+
|
|
|
import java.io.File;
|
|
|
import java.io.IOException;
|
|
|
import java.net.InetSocketAddress;
|
|
|
import java.util.Collections;
|
|
|
import java.util.List;
|
|
|
|
|
|
-import junit.framework.TestCase;
|
|
|
-
|
|
|
import org.apache.commons.logging.Log;
|
|
|
import org.apache.commons.logging.LogFactory;
|
|
|
import org.apache.commons.logging.impl.Log4JLogger;
|
|
@@ -41,13 +41,15 @@ import org.apache.hadoop.hdfs.server.namenode.FileJournalManager.EditLogFile;
|
|
|
import org.apache.hadoop.hdfs.server.protocol.NamenodeProtocols;
|
|
|
import org.apache.hadoop.test.GenericTestUtils;
|
|
|
import org.apache.log4j.Level;
|
|
|
+import org.junit.Before;
|
|
|
+import org.junit.Test;
|
|
|
|
|
|
import com.google.common.base.Supplier;
|
|
|
import com.google.common.collect.ImmutableList;
|
|
|
import com.google.common.collect.ImmutableSet;
|
|
|
import com.google.common.collect.Lists;
|
|
|
|
|
|
-public class TestBackupNode extends TestCase {
|
|
|
+public class TestBackupNode {
|
|
|
public static final Log LOG = LogFactory.getLog(TestBackupNode.class);
|
|
|
|
|
|
|
|
@@ -58,8 +60,8 @@ public class TestBackupNode extends TestCase {
|
|
|
|
|
|
static final String BASE_DIR = MiniDFSCluster.getBaseDirectory();
|
|
|
|
|
|
- protected void setUp() throws Exception {
|
|
|
- super.setUp();
|
|
|
+ @Before
|
|
|
+ public void setUp() throws Exception {
|
|
|
File baseDir = new File(BASE_DIR);
|
|
|
if(baseDir.exists())
|
|
|
if(!(FileUtil.fullyDelete(baseDir)))
|
|
@@ -90,8 +92,7 @@ public class TestBackupNode extends TestCase {
|
|
|
return (BackupNode)NameNode.createNameNode(new String[]{startupOpt.getName()}, c);
|
|
|
}
|
|
|
|
|
|
- void waitCheckpointDone(
|
|
|
- MiniDFSCluster cluster, BackupNode backup, long txid) {
|
|
|
+ void waitCheckpointDone(MiniDFSCluster cluster, long txid) {
|
|
|
long thisCheckpointTxId;
|
|
|
do {
|
|
|
try {
|
|
@@ -99,16 +100,16 @@ public class TestBackupNode extends TestCase {
|
|
|
"checkpoint txid should increase above " + txid);
|
|
|
Thread.sleep(1000);
|
|
|
} catch (Exception e) {}
|
|
|
- thisCheckpointTxId = backup.getFSImage().getStorage()
|
|
|
+ // The checkpoint is not done until the nn has received it from the bn
|
|
|
+ thisCheckpointTxId = cluster.getNameNode().getFSImage().getStorage()
|
|
|
.getMostRecentCheckpointTxId();
|
|
|
-
|
|
|
} while (thisCheckpointTxId < txid);
|
|
|
-
|
|
|
// Check that the checkpoint got uploaded to NN successfully
|
|
|
FSImageTestUtil.assertNNHasCheckpoints(cluster,
|
|
|
Collections.singletonList((int)thisCheckpointTxId));
|
|
|
}
|
|
|
|
|
|
+ @Test
|
|
|
public void testCheckpointNode() throws Exception {
|
|
|
testCheckpoint(StartupOption.CHECKPOINT);
|
|
|
}
|
|
@@ -118,6 +119,7 @@ public class TestBackupNode extends TestCase {
|
|
|
* and keep in sync, even while the NN rolls, checkpoints
|
|
|
* occur, etc.
|
|
|
*/
|
|
|
+ @Test
|
|
|
public void testBackupNodeTailsEdits() throws Exception {
|
|
|
Configuration conf = new HdfsConfiguration();
|
|
|
MiniDFSCluster cluster = null;
|
|
@@ -235,6 +237,7 @@ public class TestBackupNode extends TestCase {
|
|
|
FSImageTestUtil.assertParallelFilesAreIdentical(dirs, ImmutableSet.of("VERSION"));
|
|
|
}
|
|
|
|
|
|
+ @Test
|
|
|
public void testBackupNode() throws Exception {
|
|
|
testCheckpoint(StartupOption.BACKUP);
|
|
|
}
|
|
@@ -274,7 +277,7 @@ public class TestBackupNode extends TestCase {
|
|
|
//
|
|
|
long txid = cluster.getNameNodeRpc().getTransactionID();
|
|
|
backup = startBackupNode(conf, op, 1);
|
|
|
- waitCheckpointDone(cluster, backup, txid);
|
|
|
+ waitCheckpointDone(cluster, txid);
|
|
|
} catch(IOException e) {
|
|
|
LOG.error("Error in TestBackupNode:", e);
|
|
|
assertTrue(e.getLocalizedMessage(), false);
|
|
@@ -309,7 +312,7 @@ public class TestBackupNode extends TestCase {
|
|
|
//
|
|
|
backup = startBackupNode(conf, op, 1);
|
|
|
long txid = cluster.getNameNodeRpc().getTransactionID();
|
|
|
- waitCheckpointDone(cluster, backup, txid);
|
|
|
+ waitCheckpointDone(cluster, txid);
|
|
|
|
|
|
for (int i = 0; i < 10; i++) {
|
|
|
fileSys.mkdirs(new Path("file_" + i));
|
|
@@ -317,11 +320,11 @@ public class TestBackupNode extends TestCase {
|
|
|
|
|
|
txid = cluster.getNameNodeRpc().getTransactionID();
|
|
|
backup.doCheckpoint();
|
|
|
- waitCheckpointDone(cluster, backup, txid);
|
|
|
+ waitCheckpointDone(cluster, txid);
|
|
|
|
|
|
txid = cluster.getNameNodeRpc().getTransactionID();
|
|
|
backup.doCheckpoint();
|
|
|
- waitCheckpointDone(cluster, backup, txid);
|
|
|
+ waitCheckpointDone(cluster, txid);
|
|
|
|
|
|
// Try BackupNode operations
|
|
|
InetSocketAddress add = backup.getNameNodeAddress();
|