Skip to content

Commit 317ad3c

Browse files
HBASE-28049 RSProcedureDispatcher to log the request details during retries (#5973)
Signed-off-by: Viraj Jasani <vjasani@apache.org> Signed-off-by: Pankaj Kumar <pankajkumar@apache.org>
1 parent 91b3512 commit 317ad3c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

hbase-server/src/main/java/org/apache/hadoop/hbase/master/procedure/RSProcedureDispatcher.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -314,8 +314,8 @@ private boolean scheduleForRetry(IOException e) {
314314
LOG.warn("{} is aborted or stopped, for safety we still need to"
315315
+ " wait until it is fully dead, try={}", serverName, numberOfAttemptsSoFar);
316316
} else {
317-
LOG.warn("request to {} failed due to {}, try={}, retrying...", serverName, e.toString(),
318-
numberOfAttemptsSoFar);
317+
LOG.warn("request to {} failed due to {}, try={}, retrying... , request params: {}",
318+
serverName, e.toString(), numberOfAttemptsSoFar, request.build());
319319
}
320320
numberOfAttemptsSoFar++;
321321
// Add some backoff here as the attempts rise otherwise if a stuck condition, will fill logs

0 commit comments

Comments
 (0)