sadanand48 commented on code in PR #10185:
URL: https://github.com/apache/ozone/pull/10185#discussion_r3578584276
##########
hadoop-ozone/ozone-manager/src/main/java/org/apache/hadoop/ozone/om/OzoneManager.java:
##########
@@ -4113,17 +4110,9 @@ public synchronized TermIndex
installSnapshotFromLeader(String leaderId) throws
omDBCheckpoint = omRatisSnapshotProvider.
downloadDBSnapshotFromLeader(leaderId);
} catch (IOException ex) {
- if (OmRatisSnapshotProvider.isDiskFullOrQuotaIOException(ex)) {
- LOG.error(
- "Failed to download snapshot from leader {}: local disk appears
full or over quota "
- + "on the OM ratis snapshot volume (see previous ERROR for
path/usable space). "
- + "Free disk or adjust {}, {}, or {} before bootstrap can
succeed.",
- leaderId,
- OZONE_OM_BOOTSTRAP_MIN_SPACE_KEY,
- OZONE_OM_BOOTSTRAP_CHECKPOINT_HEADROOM_RATIO_KEY,
- OZONE_OM_CHECKPOINT_ESTIMATED_SST_BYTES_HEADER);
+ if (!OmRatisSnapshotProvider.isDiskFullOrQuotaIOException(ex)) {
+ LOG.error("Failed to download snapshot from Leader {}.", leaderId, ex);
Review Comment:
I see it has been fixed by latest commit, please ignore
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]