This is an automated email from the ASF dual-hosted git repository. zanderxu pushed a commit to branch trunk in repository https://gitbox.apache.org/repos/asf/hadoop.git
The following commit(s) were added to refs/heads/trunk by this push: new 34bb28649c7b HDFS-17406. Suppress UnresolvedPathException in hdfs router log (#6603) 34bb28649c7b is described below commit 34bb28649c7ba16585648b1f961ebc95c679c7c5 Author: huhaiyang <huhaiyang...@126.com> AuthorDate: Fri Mar 1 19:03:41 2024 +0800 HDFS-17406. Suppress UnresolvedPathException in hdfs router log (#6603) --- .../apache/hadoop/hdfs/server/federation/router/RouterRpcServer.java | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/hadoop-hdfs-project/hadoop-hdfs-rbf/src/main/java/org/apache/hadoop/hdfs/server/federation/router/RouterRpcServer.java b/hadoop-hdfs-project/hadoop-hdfs-rbf/src/main/java/org/apache/hadoop/hdfs/server/federation/router/RouterRpcServer.java index 29aa16ff041e..2b1045f9d55d 100644 --- a/hadoop-hdfs-project/hadoop-hdfs-rbf/src/main/java/org/apache/hadoop/hdfs/server/federation/router/RouterRpcServer.java +++ b/hadoop-hdfs-project/hadoop-hdfs-rbf/src/main/java/org/apache/hadoop/hdfs/server/federation/router/RouterRpcServer.java @@ -57,6 +57,7 @@ import java.util.stream.Collectors; import org.apache.hadoop.fs.Path; import org.apache.hadoop.hdfs.HAUtil; +import org.apache.hadoop.hdfs.protocol.UnresolvedPathException; import org.apache.hadoop.thirdparty.com.google.common.cache.CacheBuilder; import org.apache.hadoop.thirdparty.com.google.common.cache.CacheLoader; import org.apache.hadoop.thirdparty.com.google.common.cache.LoadingCache; @@ -369,7 +370,7 @@ public class RouterRpcServer extends AbstractService implements ClientProtocol, RetriableException.class); this.rpcServer.addSuppressedLoggingExceptions( - StandbyException.class); + StandbyException.class, UnresolvedPathException.class); // The RPC-server port can be ephemeral... ensure we have the correct info InetSocketAddress listenAddress = this.rpcServer.getListenerAddress(); --------------------------------------------------------------------- To unsubscribe, e-mail: common-commits-unsubscr...@hadoop.apache.org For additional commands, e-mail: common-commits-h...@hadoop.apache.org