HDFS-7233. NN logs unnecessary org.apache.hadoop.hdfs.protocol.UnresolvedPathException. Contributed by Rushabh S Shah.

This commit is contained in:
Jing Zhao 2014-11-04 16:02:07 -08:00
parent 99d710348a
commit 5bd3a569f9
2 changed files with 5 additions and 1 deletions

View File

@ -694,6 +694,9 @@ Release 2.6.0 - UNRELEASED
HDFS-7276. Limit the number of byte arrays used by DFSOutputStream and
provide a mechanism for recycling arrays. (szetszwo)
HDFS-7233. NN logs unnecessary org.apache.hadoop.hdfs.protocol.UnresolvedPathException.
(Rushabh S Shah via jing9)
OPTIMIZATIONS
HDFS-6690. Deduplicate xattr names in memory. (wang)

View File

@ -399,7 +399,8 @@ public NameNodeRpcServer(Configuration conf, NameNode nn)
DSQuotaExceededException.class,
AclException.class,
FSLimitException.PathComponentTooLongException.class,
FSLimitException.MaxDirectoryItemsExceededException.class);
FSLimitException.MaxDirectoryItemsExceededException.class,
UnresolvedPathException.class);
}
/** Allow access to the client RPC server for testing */