HDFS-4857. Snapshot.Root and AbstractINodeDiff#snapshotINode should not be put into INodeMap when loading FSImage. Contributed by Jing Zhao

git-svn-id: https://svn.apache.org/repos/asf/hadoop/common/trunk@1487655 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Jing Zhao 2013-05-29 22:22:44 +00:00
parent 719034c12c
commit 01f27f5c23
5 changed files with 55 additions and 10 deletions

View File

@ -610,6 +610,9 @@ Trunk (Unreleased)
HDFS-4846. Clean up snapshot CLI commands output stacktrace for invalid HDFS-4846. Clean up snapshot CLI commands output stacktrace for invalid
arguments. (Jing Zhao via brandonli) arguments. (Jing Zhao via brandonli)
HDFS-4857. Snapshot.Root and AbstractINodeDiff#snapshotINode should not be
put into INodeMap when loading FSImage. (jing9)
Release 2.0.5-beta - UNRELEASED Release 2.0.5-beta - UNRELEASED
INCOMPATIBLE CHANGES INCOMPATIBLE CHANGES

View File

@ -407,7 +407,7 @@ private int loadChildren(INodeDirectory parent, DataInput in)
int numChildren = in.readInt(); int numChildren = in.readInt();
for (int i = 0; i < numChildren; i++) { for (int i = 0; i < numChildren; i++) {
// load single inode // load single inode
INode newNode = loadINodeWithLocalName(false, in); INode newNode = loadINodeWithLocalName(false, in, true);
addToParent(parent, newNode); addToParent(parent, newNode);
} }
return numChildren; return numChildren;
@ -556,10 +556,11 @@ public FSDirectory getFSDirectoryInLoading() {
} }
public INode loadINodeWithLocalName(boolean isSnapshotINode, public INode loadINodeWithLocalName(boolean isSnapshotINode,
DataInput in) throws IOException { DataInput in, boolean updateINodeMap) throws IOException {
final byte[] localName = FSImageSerialization.readLocalName(in); final byte[] localName = FSImageSerialization.readLocalName(in);
INode inode = loadINode(localName, isSnapshotINode, in); INode inode = loadINode(localName, isSnapshotINode, in);
if (LayoutVersion.supports(Feature.ADD_INODE_ID, getLayoutVersion())) { if (updateINodeMap
&& LayoutVersion.supports(Feature.ADD_INODE_ID, getLayoutVersion())) {
namesystem.dir.addToInodeMap(inode); namesystem.dir.addToInodeMap(inode);
} }
return inode; return inode;

View File

@ -129,7 +129,7 @@ public static Snapshot findLatestSnapshot(INode inode, Snapshot anchor) {
static Snapshot read(DataInput in, FSImageFormat.Loader loader) static Snapshot read(DataInput in, FSImageFormat.Loader loader)
throws IOException { throws IOException {
final int snapshotId = in.readInt(); final int snapshotId = in.readInt();
final INode root = loader.loadINodeWithLocalName(false, in); final INode root = loader.loadINodeWithLocalName(false, in, false);
return new Snapshot(snapshotId, root.asDirectory(), null); return new Snapshot(snapshotId, root.asDirectory(), null);
} }

View File

@ -127,7 +127,7 @@ private static FileDiff loadFileDiff(FileDiff posterior, DataInput in,
// 3. Load snapshotINode // 3. Load snapshotINode
final INodeFile snapshotINode = in.readBoolean()? final INodeFile snapshotINode = in.readBoolean()?
loader.loadINodeWithLocalName(true, in).asFile(): null; loader.loadINodeWithLocalName(true, in, false).asFile(): null;
return new FileDiff(snapshot, snapshotINode, posterior, fileSize); return new FileDiff(snapshot, snapshotINode, posterior, fileSize);
} }
@ -194,7 +194,7 @@ private static List<INode> loadDeletedList(INodeDirectoryWithSnapshot parent,
int deletedSize = in.readInt(); int deletedSize = in.readInt();
List<INode> deletedList = new ArrayList<INode>(deletedSize); List<INode> deletedList = new ArrayList<INode>(deletedSize);
for (int i = 0; i < deletedSize; i++) { for (int i = 0; i < deletedSize; i++) {
final INode deleted = loader.loadINodeWithLocalName(true, in); final INode deleted = loader.loadINodeWithLocalName(true, in, true);
deletedList.add(deleted); deletedList.add(deleted);
// set parent: the parent field of an INode in the deleted list is not // set parent: the parent field of an INode in the deleted list is not
// useful, but set the parent here to be consistent with the original // useful, but set the parent here to be consistent with the original
@ -246,8 +246,8 @@ public static void loadDirectoryDiffList(INodeDirectory dir,
} }
/** /**
* Load the snapshotINode field of {@link SnapshotDiff}. * Load the snapshotINode field of {@link AbstractINodeDiff}.
* @param snapshot The Snapshot associated with the {@link SnapshotDiff}. * @param snapshot The Snapshot associated with the {@link AbstractINodeDiff}.
* @param in The {@link DataInput} to read. * @param in The {@link DataInput} to read.
* @param loader The {@link Loader} instance that this loading procedure is * @param loader The {@link Loader} instance that this loading procedure is
* using. * using.
@ -263,7 +263,7 @@ private static INodeDirectory loadSnapshotINodeInDirectoryDiff(
} else { } else {
// another boolean is used to indicate whether snapshotINode is non-null // another boolean is used to indicate whether snapshotINode is non-null
return in.readBoolean()? return in.readBoolean()?
loader.loadINodeWithLocalName(true, in).asDirectory(): null; loader.loadINodeWithLocalName(true, in, false).asDirectory(): null;
} }
} }
@ -348,7 +348,8 @@ public INodeReference.WithCount loadINodeReferenceWithCount(
final INodeReference.WithCount withCount; final INodeReference.WithCount withCount;
if (firstReferred) { if (firstReferred) {
final INode referred = loader.loadINodeWithLocalName(isSnapshotINode, in); final INode referred = loader.loadINodeWithLocalName(isSnapshotINode,
in, true);
withCount = new INodeReference.WithCount(null, referred); withCount = new INodeReference.WithCount(null, referred);
referenceMap.put(withCount.getId(), withCount); referenceMap.put(withCount.getId(), withCount);
} else { } else {

View File

@ -18,6 +18,7 @@
package org.apache.hadoop.hdfs.server.namenode; package org.apache.hadoop.hdfs.server.namenode;
import static org.junit.Assert.assertEquals; import static org.junit.Assert.assertEquals;
import static org.junit.Assert.assertTrue;
import java.io.File; import java.io.File;
import java.io.IOException; import java.io.IOException;
@ -40,6 +41,8 @@
import org.apache.hadoop.hdfs.protocol.HdfsConstants.SafeModeAction; import org.apache.hadoop.hdfs.protocol.HdfsConstants.SafeModeAction;
import org.apache.hadoop.hdfs.protocol.SnapshottableDirectoryStatus; import org.apache.hadoop.hdfs.protocol.SnapshottableDirectoryStatus;
import org.apache.hadoop.hdfs.server.namenode.NNStorage.NameNodeFile; import org.apache.hadoop.hdfs.server.namenode.NNStorage.NameNodeFile;
import org.apache.hadoop.hdfs.server.namenode.snapshot.INodeDirectorySnapshottable;
import org.apache.hadoop.hdfs.server.namenode.snapshot.INodeDirectoryWithSnapshot.DirectoryDiff;
import org.apache.hadoop.hdfs.server.namenode.snapshot.SnapshotTestHelper; import org.apache.hadoop.hdfs.server.namenode.snapshot.SnapshotTestHelper;
import org.apache.hadoop.hdfs.util.Canceler; import org.apache.hadoop.hdfs.util.Canceler;
import org.apache.log4j.Level; import org.apache.log4j.Level;
@ -162,6 +165,43 @@ private void loadFSImageFromTempFile(File imageFile) throws IOException {
} }
} }
/**
* Test when there is snapshot taken on root
*/
@Test
public void testSnapshotOnRoot() throws Exception {
final Path root = new Path("/");
hdfs.allowSnapshot(root);
hdfs.createSnapshot(root, "s1");
cluster.shutdown();
cluster = new MiniDFSCluster.Builder(conf).format(false)
.numDataNodes(REPLICATION).build();
cluster.waitActive();
fsn = cluster.getNamesystem();
hdfs = cluster.getFileSystem();
// save namespace and restart cluster
hdfs.setSafeMode(SafeModeAction.SAFEMODE_ENTER);
hdfs.saveNamespace();
hdfs.setSafeMode(SafeModeAction.SAFEMODE_LEAVE);
cluster.shutdown();
cluster = new MiniDFSCluster.Builder(conf).format(false)
.numDataNodes(REPLICATION).build();
cluster.waitActive();
fsn = cluster.getNamesystem();
hdfs = cluster.getFileSystem();
INodeDirectorySnapshottable rootNode =
(INodeDirectorySnapshottable) fsn.dir.getINode4Write(root.toString());
assertTrue("The children list of root should be empty",
rootNode.getChildrenList(null).isEmpty());
// one snapshot on root: s1
List<DirectoryDiff> diffList = rootNode.getDiffs().asList();
assertEquals(1, diffList.size());
assertEquals("s1", diffList.get(0).getSnapshot().getRoot().getLocalName());
}
/** /**
* Testing steps: * Testing steps:
* <pre> * <pre>