This is an automated email from the ASF dual-hosted git repository. ctrezzo pushed a commit to branch branch-3.3 in repository https://gitbox.apache.org/repos/asf/hadoop.git
The following commit(s) were added to refs/heads/branch-3.3 by this push: new 7ad49298689c HDFS-17404. Add NN Socket Address to log when processing command from active NN (#6598) 7ad49298689c is described below commit 7ad49298689c6f62339e4804c8f06e64cb9ebd73 Author: Jtdellaringa <78453490+jtdellari...@users.noreply.github.com> AuthorDate: Tue Mar 5 10:33:22 2024 -0800 HDFS-17404. Add NN Socket Address to log when processing command from active NN (#6598) * Add nnSocketAddress to log when processing command from active nn --- .../java/org/apache/hadoop/hdfs/server/datanode/BPOfferService.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hadoop-hdfs-project/hadoop-hdfs/src/main/java/org/apache/hadoop/hdfs/server/datanode/BPOfferService.java b/hadoop-hdfs-project/hadoop-hdfs/src/main/java/org/apache/hadoop/hdfs/server/datanode/BPOfferService.java index b8a52aa79fed..afbeca4d88e9 100644 --- a/hadoop-hdfs-project/hadoop-hdfs/src/main/java/org/apache/hadoop/hdfs/server/datanode/BPOfferService.java +++ b/hadoop-hdfs-project/hadoop-hdfs/src/main/java/org/apache/hadoop/hdfs/server/datanode/BPOfferService.java @@ -778,7 +778,7 @@ class BPOfferService { ((BlockRecoveryCommand)cmd).getRecoveringBlocks()); break; case DatanodeProtocol.DNA_ACCESSKEYUPDATE: - LOG.info("DatanodeCommand action: DNA_ACCESSKEYUPDATE"); + LOG.info("DatanodeCommand action from active NN {}: DNA_ACCESSKEYUPDATE", nnSocketAddress); if (dn.isBlockTokenEnabled) { dn.blockPoolTokenSecretManager.addKeys( getBlockPoolId(), --------------------------------------------------------------------- To unsubscribe, e-mail: common-commits-unsubscr...@hadoop.apache.org For additional commands, e-mail: common-commits-h...@hadoop.apache.org