HDFS-7233. NN logs unnecessary org.apache.hadoop.hdfs.protocol.UnresolvedPathException. Contributed by Rushabh S Shah.
This commit is contained in:
parent
1550617e48
commit
1ca1a0358e
|
@ -303,6 +303,9 @@ Release 2.6.0 - UNRELEASED
|
||||||
HDFS-7276. Limit the number of byte arrays used by DFSOutputStream and
|
HDFS-7276. Limit the number of byte arrays used by DFSOutputStream and
|
||||||
provide a mechanism for recycling arrays. (szetszwo)
|
provide a mechanism for recycling arrays. (szetszwo)
|
||||||
|
|
||||||
|
HDFS-7233. NN logs unnecessary org.apache.hadoop.hdfs.protocol.UnresolvedPathException.
|
||||||
|
(Rushabh S Shah via jing9)
|
||||||
|
|
||||||
OPTIMIZATIONS
|
OPTIMIZATIONS
|
||||||
|
|
||||||
HDFS-6690. Deduplicate xattr names in memory. (wang)
|
HDFS-6690. Deduplicate xattr names in memory. (wang)
|
||||||
|
|
|
@ -394,7 +394,8 @@ class NameNodeRpcServer implements NamenodeProtocols {
|
||||||
DSQuotaExceededException.class,
|
DSQuotaExceededException.class,
|
||||||
AclException.class,
|
AclException.class,
|
||||||
FSLimitException.PathComponentTooLongException.class,
|
FSLimitException.PathComponentTooLongException.class,
|
||||||
FSLimitException.MaxDirectoryItemsExceededException.class);
|
FSLimitException.MaxDirectoryItemsExceededException.class,
|
||||||
|
UnresolvedPathException.class);
|
||||||
}
|
}
|
||||||
|
|
||||||
/** Allow access to the client RPC server for testing */
|
/** Allow access to the client RPC server for testing */
|
||||||
|
|
Loading…
Reference in New Issue