Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -823,8 +823,13 @@ protected void extractMetaFromEntryLogs() throws EntryLogMetadataMapException {
entryLogMetaMap.put(entryLogId, entryLogMeta);
}
} catch (IOException | RuntimeException e) {
LOG.warn("Premature exception when processing " + entryLogId
+ " recovery will take care of the problem", e);
LOG.warn("Premature exception when processing {} recovery will take care of the problem",
entryLogId, e);
} catch (OutOfMemoryError oome) {
// somewhat similar to https://github.com/apache/bookkeeper/pull/3901
// entrylog file can be corrupted but instead having a negative entry size
// it ends up with very large value for the entry size causing OODME
LOG.warn("OutOfMemoryError when processing {} - skipping the entry log", entryLogId, oome);
}
}
}
Expand Down
Loading