This is an automated email from the ASF dual-hosted git repository.
zhangduo pushed a commit to branch branch-2
in repository https://gitbox.apache.org/repos/asf/hbase.git
The following commit(s) were added to refs/heads/branch-2 by this push:
new 0c7a4f29b77 HBASE-29698 Correct log message in
ReplicationSourceShipper.clearWALEntryBatch (#7431)
0c7a4f29b77 is described below
commit 0c7a4f29b77c91e60629abd1d1b0079d9c0956a6
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 50dbaca7ff6..746c845908f 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
@@ -343,10 +343,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