This is an automated email from the ASF dual-hosted git repository.
zhangduo pushed a commit to branch branch-3
in repository https://gitbox.apache.org/repos/asf/hbase.git
The following commit(s) were added to refs/heads/branch-3 by this push:
new 2485bccc8a9 HBASE-29698 Correct log message in
ReplicationSourceShipper.clearWALEntryBatch (#7431)
2485bccc8a9 is described below
commit 2485bccc8a9a1745f81c8d17fb0bf9453591419b
Author: Liu Xiao <[email protected]>
AuthorDate: Thu Nov 27 17:17:56 2025 +0800
HBASE-29698 Correct log message in
ReplicationSourceShipper.clearWALEntryBatch (#7431)
Signed-off-by: Duo Zhang <[email protected]>
(cherry picked from commit 100cd23406ac5a3b1390b7c2733f02f3b6e81a63)
---
.../hbase/replication/regionserver/ReplicationSourceShipper.java | 7 +++----
1 file changed, 3 insertions(+), 4 deletions(-)
diff --git
a/hbase-server/src/main/java/org/apache/hadoop/hbase/replication/regionserver/ReplicationSourceShipper.java
b/hbase-server/src/main/java/org/apache/hadoop/hbase/replication/regionserver/ReplicationSourceShipper.java
index 6d0730d76b6..4709e607fc7 100644
---
a/hbase-server/src/main/java/org/apache/hadoop/hbase/replication/regionserver/ReplicationSourceShipper.java
+++
b/hbase-server/src/main/java/org/apache/hadoop/hbase/replication/regionserver/ReplicationSourceShipper.java
@@ -328,10 +328,9 @@ public class ReplicationSourceShipper extends Thread {
while (this.isAlive() || this.entryReader.isAlive()) {
try {
if (EnvironmentEdgeManager.currentTime() >= timeout) {
- LOG.warn(
- "Shipper clearWALEntryBatch method timed out whilst waiting
reader/shipper "
- + "thread to stop. Not cleaning buffer usage. Shipper alive: {};
Reader alive: {}",
- this.source.getPeerId(), this.isAlive(),
this.entryReader.isAlive());
+ LOG.warn("Shipper clearWALEntryBatch method timed out while waiting
reader/shipper "
+ + "thread to stop. Not cleaning buffer usage. PeerId: {}; Shipper
alive: {}; Reader "
+ + "alive: {}", this.source.getPeerId(), this.isAlive(),
this.entryReader.isAlive());
return;
} else {
// Wait both shipper and reader threads to stop