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
commit 9270519eadda8dce5dad4c6936ce27b77766dd7a Author: Charles Connell <[email protected]> AuthorDate: Sat Jun 15 22:15:20 2024 -0400 HBASE-28666 Dropping unclosed WALTailingReaders leads to leaked sockets (#5994) In WALEntryStream, always use current WALTailingReader if one exists Signed-off-by: Duo Zhang <[email protected]> (cherry picked from commit bd8ad45a259a1b0066068e41a25ef4c9098d374a) --- .../org/apache/hadoop/hbase/replication/regionserver/WALEntryStream.java | 1 + 1 file changed, 1 insertion(+) diff --git a/hbase-server/src/main/java/org/apache/hadoop/hbase/replication/regionserver/WALEntryStream.java b/hbase-server/src/main/java/org/apache/hadoop/hbase/replication/regionserver/WALEntryStream.java index 186d5b7c4d1..8d74d0e0399 100644 --- a/hbase-server/src/main/java/org/apache/hadoop/hbase/replication/regionserver/WALEntryStream.java +++ b/hbase-server/src/main/java/org/apache/hadoop/hbase/replication/regionserver/WALEntryStream.java @@ -219,6 +219,7 @@ class WALEntryStream implements Closeable { // we will read from the beginning so we should always clear the compression context reader.resetTo(-1, true); } + return HasNext.YES; } catch (IOException e) { LOG.warn("Failed to reset reader {} to pos {}, reset compression={}", currentPath, currentPositionOfEntry, state.resetCompression(), e);
