Galsza commented on code in PR #8408: URL: https://github.com/apache/ozone/pull/8408#discussion_r2078178312
########## 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: What can we do on client side to make this better? Would exposing it to jmx help anything? -- 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