This is an automated email from the ASF dual-hosted git repository.
yunhong pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/fluss.git
The following commit(s) were added to refs/heads/main by this push:
new 2a3381bf0 [hotfix] Add bucket info for error info while loading the
stored index file (#1713)
2a3381bf0 is described below
commit 2a3381bf0439f15968419d6ed144bc634862f332
Author: Liebing <[email protected]>
AuthorDate: Thu Sep 18 10:43:51 2025 +0800
[hotfix] Add bucket info for error info while loading the stored index file
(#1713)
---
.../java/org/apache/fluss/server/log/remote/RemoteLogIndexCache.java | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git
a/fluss-server/src/main/java/org/apache/fluss/server/log/remote/RemoteLogIndexCache.java
b/fluss-server/src/main/java/org/apache/fluss/server/log/remote/RemoteLogIndexCache.java
index b12abe291..2a4a5502d 100644
---
a/fluss-server/src/main/java/org/apache/fluss/server/log/remote/RemoteLogIndexCache.java
+++
b/fluss-server/src/main/java/org/apache/fluss/server/log/remote/RemoteLogIndexCache.java
@@ -476,8 +476,9 @@ public class RemoteLogIndexCache implements Closeable {
index = readIndex.apply(indexFile);
} catch (CorruptIndexException ex) {
LOG.info(
- "Error occurred while loading the stored index file
{}",
+ "Error occurred while loading the stored index file {}
for bucket {}",
indexFile.getPath(),
+ remoteLogSegment.tableBucket(),
ex);
}
}