|
@@ -32,13 +32,17 @@ import java.io.FilenameFilter;
|
|
|
import java.io.IOException;
|
|
|
import java.util.Collections;
|
|
|
import java.util.LinkedList;
|
|
|
+import java.nio.file.Files;
|
|
|
import java.util.List;
|
|
|
import java.util.regex.Pattern;
|
|
|
|
|
|
+import com.google.common.base.Preconditions;
|
|
|
import org.apache.commons.logging.Log;
|
|
|
import org.apache.commons.logging.LogFactory;
|
|
|
import org.apache.hadoop.conf.Configuration;
|
|
|
import org.apache.hadoop.hdfs.protocol.HdfsConstants;
|
|
|
+import org.apache.hadoop.hdfs.inotify.Event;
|
|
|
+import org.apache.hadoop.hdfs.inotify.EventBatch;
|
|
|
import org.apache.hadoop.hdfs.protocol.HdfsConstants.RollingUpgradeAction;
|
|
|
import org.apache.hadoop.hdfs.protocol.HdfsConstants.SafeModeAction;
|
|
|
import org.apache.hadoop.hdfs.server.common.HdfsServerConstants.NodeType;
|
|
@@ -46,7 +50,11 @@ import org.apache.hadoop.hdfs.server.common.HdfsServerConstants.StartupOption;
|
|
|
import org.apache.hadoop.hdfs.server.common.InconsistentFSStateException;
|
|
|
import org.apache.hadoop.hdfs.server.common.Storage;
|
|
|
import org.apache.hadoop.hdfs.server.common.StorageInfo;
|
|
|
+import org.apache.hadoop.hdfs.server.namenode.EditLogFileInputStream;
|
|
|
+import org.apache.hadoop.hdfs.server.namenode.EditLogFileOutputStream;
|
|
|
+import org.apache.hadoop.hdfs.server.namenode.FSEditLogOp;
|
|
|
import org.apache.hadoop.hdfs.server.namenode.NNStorage;
|
|
|
+import org.apache.hadoop.hdfs.server.namenode.NameNodeLayoutVersion;
|
|
|
import org.apache.hadoop.hdfs.server.namenode.TestParallelImageWrite;
|
|
|
import org.apache.hadoop.ipc.RemoteException;
|
|
|
import org.apache.hadoop.util.StringUtils;
|
|
@@ -54,6 +62,8 @@ import org.junit.BeforeClass;
|
|
|
import org.junit.Ignore;
|
|
|
import org.junit.Test;
|
|
|
|
|
|
+import static org.apache.hadoop.hdfs.inotify.Event.CreateEvent;
|
|
|
+
|
|
|
import com.google.common.base.Charsets;
|
|
|
import com.google.common.base.Joiner;
|
|
|
|
|
@@ -466,29 +476,49 @@ public class TestDFSUpgrade {
|
|
|
log("Normal NameNode upgrade", 1);
|
|
|
File[] created =
|
|
|
UpgradeUtilities.createNameNodeStorageDirs(nameNodeDirs, "current");
|
|
|
- List<String> beforeUpgrade = new LinkedList<String>();
|
|
|
for (final File createdDir : created) {
|
|
|
String[] fileNameList = createdDir.list(EditLogsFilter.INSTANCE);
|
|
|
- Collections.addAll(beforeUpgrade, fileNameList);
|
|
|
+ for (String fileName : fileNameList) {
|
|
|
+ String tmpFileName = fileName + ".tmp";
|
|
|
+ File existingFile = new File(createdDir, fileName);
|
|
|
+ File tmpFile = new File(createdDir, tmpFileName);
|
|
|
+ Files.move(existingFile.toPath(), tmpFile.toPath());
|
|
|
+ File newFile = new File(createdDir, fileName);
|
|
|
+ Preconditions.checkState(newFile.createNewFile(),
|
|
|
+ "Cannot create new edits log file in " + createdDir);
|
|
|
+ EditLogFileInputStream in = new EditLogFileInputStream(tmpFile,
|
|
|
+ HdfsConstants.INVALID_TXID, HdfsConstants.INVALID_TXID,
|
|
|
+ false);
|
|
|
+ EditLogFileOutputStream out = new EditLogFileOutputStream(conf, newFile,
|
|
|
+ (int)tmpFile.length());
|
|
|
+ out.create(NameNodeLayoutVersion.CURRENT_LAYOUT_VERSION + 1);
|
|
|
+ FSEditLogOp logOp = in.readOp();
|
|
|
+ while (logOp != null) {
|
|
|
+ out.write(logOp);
|
|
|
+ logOp = in.readOp();
|
|
|
+ }
|
|
|
+ out.setReadyToFlush();
|
|
|
+ out.flushAndSync(true);
|
|
|
+ out.close();
|
|
|
+ Files.delete(tmpFile.toPath());
|
|
|
+ }
|
|
|
}
|
|
|
|
|
|
cluster = createCluster();
|
|
|
|
|
|
- List<String> afterUpgrade = new LinkedList<String>();
|
|
|
- for (final File createdDir : created) {
|
|
|
- String[] fileNameList = createdDir.list(EditLogsFilter.INSTANCE);
|
|
|
- Collections.addAll(afterUpgrade, fileNameList);
|
|
|
- }
|
|
|
-
|
|
|
- for (String s : beforeUpgrade) {
|
|
|
- assertTrue(afterUpgrade.contains(s));
|
|
|
- }
|
|
|
-
|
|
|
+ DFSInotifyEventInputStream ieis =
|
|
|
+ cluster.getFileSystem().getInotifyEventStream(0);
|
|
|
+ EventBatch batch = ieis.poll();
|
|
|
+ Event[] events = batch.getEvents();
|
|
|
+ assertTrue("Should be able to get transactions before the upgrade.",
|
|
|
+ events.length > 0);
|
|
|
+ assertEquals(events[0].getEventType(), Event.EventType.CREATE);
|
|
|
+ assertEquals(((CreateEvent) events[0]).getPath(), "/TestUpgrade");
|
|
|
cluster.shutdown();
|
|
|
UpgradeUtilities.createEmptyDirs(nameNodeDirs);
|
|
|
}
|
|
|
|
|
|
- private static enum EditLogsFilter implements FilenameFilter {
|
|
|
+ private enum EditLogsFilter implements FilenameFilter {
|
|
|
INSTANCE;
|
|
|
|
|
|
@Override
|