Skip to content

Commit

Permalink
HDDS-11857. Freon log flooded by HSync message (#7613)
Browse files Browse the repository at this point in the history
  • Loading branch information
chiacyu authored Dec 24, 2024
1 parent 5b27f6d commit f34cf34
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ public class ChecksumCache {
private static final int BLOCK_CHUNK_SIZE = 4 * 1024 * 1024; // 4 MB

public ChecksumCache(int bytesPerChecksum) {
LOG.info("Initializing ChecksumCache with bytesPerChecksum = {}", bytesPerChecksum);
LOG.debug("Initializing ChecksumCache with bytesPerChecksum = {}", bytesPerChecksum);
this.prevChunkLength = 0;
this.bytesPerChecksum = bytesPerChecksum;
// Set initialCapacity to avoid costly resizes
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -318,7 +318,7 @@ public static boolean canEnableHsync(ConfigurationSource conf, boolean isClient)
return confHsyncEnabled;
} else {
if (confHsyncEnabled) {
LOG.warn("Ignoring {} = {} because HBase enhancements are disallowed. To enable it, set {} = true as well.",
LOG.debug("Ignoring {} = {} because HBase enhancements are disallowed. To enable it, set {} = true as well.",
OzoneConfigKeys.OZONE_FS_HSYNC_ENABLED, true,
confKey);
}
Expand Down

0 comments on commit f34cf34

Please sign in to comment.