adoroszlai commented on code in PR #8408: URL: https://github.com/apache/ozone/pull/8408#discussion_r2077255848
########## hadoop-hdds/client/src/main/java/org/apache/hadoop/ozone/client/io/ECBlockInputStreamProxy.java: ########## @@ -117,6 +117,8 @@ private synchronized void setReaderType() { int expected = expectedDataLocations(repConfig, getLength()); int available = availableDataLocations(blockInfo.getPipeline(), expected); reconstructionReader = available < expected; + LOG.info("Available data locations: {}, Expected data locations: {}. Based on this online reconstruction is: {}", + available, expected, reconstructionReader ? "triggered." : "not triggered."); Review Comment: I don't think the message is needed for normal ("not triggered") case. Also, please reduce verbosity, something like: ``` Data locations available: {} < expected: {}, using reconstruction read ``` -- 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: issues-unsubscr...@ozone.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org --------------------------------------------------------------------- To unsubscribe, e-mail: issues-unsubscr...@ozone.apache.org For additional commands, e-mail: issues-h...@ozone.apache.org