This is an automated email from the ASF dual-hosted git repository.

vjasani pushed a commit to branch branch-2.5
in repository https://gitbox.apache.org/repos/asf/hbase.git


The following commit(s) were added to refs/heads/branch-2.5 by this push:
     new cfdc8ea1d68 HBASE-28049 RSProcedureDispatcher to log the request 
details during retries (#5973)
cfdc8ea1d68 is described below

commit cfdc8ea1d68498e49855de37b953482ec324322f
Author: KhyatiVaghamshi <khyati...@gmail.com>
AuthorDate: Tue Jun 11 12:15:52 2024 -0700

    HBASE-28049 RSProcedureDispatcher to log the request details during retries 
(#5973)
    
    Signed-off-by: Viraj Jasani <vjas...@apache.org>
    Signed-off-by: Pankaj Kumar <pankajku...@apache.org>
---
 .../apache/hadoop/hbase/master/procedure/RSProcedureDispatcher.java   | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git 
a/hbase-server/src/main/java/org/apache/hadoop/hbase/master/procedure/RSProcedureDispatcher.java
 
b/hbase-server/src/main/java/org/apache/hadoop/hbase/master/procedure/RSProcedureDispatcher.java
index 3b7f64041f5..1241c26ba59 100644
--- 
a/hbase-server/src/main/java/org/apache/hadoop/hbase/master/procedure/RSProcedureDispatcher.java
+++ 
b/hbase-server/src/main/java/org/apache/hadoop/hbase/master/procedure/RSProcedureDispatcher.java
@@ -319,8 +319,8 @@ public class RSProcedureDispatcher extends 
RemoteProcedureDispatcher<MasterProce
         LOG.warn("{} is aborted or stopped, for safety we still need to"
           + " wait until it is fully dead, try={}", serverName, 
numberOfAttemptsSoFar);
       } else {
-        LOG.warn("request to {} failed due to {}, try={}, retrying...", 
serverName, e.toString(),
-          numberOfAttemptsSoFar);
+        LOG.warn("request to {} failed due to {}, try={}, retrying... , 
request params: {}",
+          serverName, e.toString(), numberOfAttemptsSoFar, request.build());
       }
       numberOfAttemptsSoFar++;
       // Add some backoff here as the attempts rise otherwise if a stuck 
condition, will fill logs

Reply via email to