HDFS-4482. ReplicationMonitor thread can exit with NPE due to the race between delete and replication of same file. Contributed by Uma Maheswara Rao G.
git-svn-id: https://svn.apache.org/repos/asf/hadoop/common/trunk@1448708 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
0b73dde6ce
commit
bf44d16ef4
|
@ -324,6 +324,9 @@ Release 2.0.4-beta - UNRELEASED
|
||||||
but not in dfs.namenode.edits.dir are silently ignored. (Arpit Agarwal
|
but not in dfs.namenode.edits.dir are silently ignored. (Arpit Agarwal
|
||||||
via szetszwo)
|
via szetszwo)
|
||||||
|
|
||||||
|
HDFS-4482. ReplicationMonitor thread can exit with NPE due to the race
|
||||||
|
between delete and replication of same file. (umamahesh)
|
||||||
|
|
||||||
Release 2.0.3-alpha - 2013-02-06
|
Release 2.0.3-alpha - 2013-02-06
|
||||||
|
|
||||||
INCOMPATIBLE CHANGES
|
INCOMPATIBLE CHANGES
|
||||||
|
|
|
@ -1343,6 +1343,11 @@ public class FSDirectory implements Closeable {
|
||||||
|
|
||||||
// fill up the inodes in the path from this inode to root
|
// fill up the inodes in the path from this inode to root
|
||||||
for (int i = 0; i < depth; i++) {
|
for (int i = 0; i < depth; i++) {
|
||||||
|
if (inode == null) {
|
||||||
|
NameNode.stateChangeLog.warn("Could not get full path."
|
||||||
|
+ " Corresponding file might have deleted already.");
|
||||||
|
return null;
|
||||||
|
}
|
||||||
inodes[depth-i-1] = inode;
|
inodes[depth-i-1] = inode;
|
||||||
inode = inode.parent;
|
inode = inode.parent;
|
||||||
}
|
}
|
||||||
|
|
|
@ -282,7 +282,11 @@ abstract class INode implements Comparable<byte[]> {
|
||||||
|
|
||||||
String getLocalParentDir() {
|
String getLocalParentDir() {
|
||||||
INode inode = isRoot() ? this : getParent();
|
INode inode = isRoot() ? this : getParent();
|
||||||
return (inode != null) ? inode.getFullPathName() : "";
|
String parentDir = "";
|
||||||
|
if (inode != null) {
|
||||||
|
parentDir = inode.getFullPathName();
|
||||||
|
}
|
||||||
|
return (parentDir != null) ? parentDir : "";
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
Loading…
Reference in New Issue