ChenSammi commented on code in PR #8150: URL: https://github.com/apache/ozone/pull/8150#discussion_r2024509871
########## hadoop-hdds/tools/src/test/java/org/apache/hadoop/hdds/scm/cli/datanode/TestDiskBalancerSubCommand.java: ########## @@ -192,6 +198,51 @@ public void testDiskBalancerStopSubcommand() throws IOException { stopCmd.setAllHosts(false); } + public static Stream<Arguments> values() { + return Stream.of( + Arguments.arguments(0L, 0L, 0L, 0L, 0L), // bytesMovedMB = 0, bytesToMoveMB = 0, estimatedTimeLeft = 0 + Arguments.arguments(512L, 512L, 1L, 1L, 1L), // bytesMoved and bytesToMove < 1MB should be rounded up to 1MB + Arguments.arguments(5242880L, 10485760L, 5L, 10L, 1L), // bytesMoved = 5MB, bytesToMove = 10MB, estTimeLeft = 1 + Arguments.arguments(13774139392L, 3229900800L, 13137L, 3081L, 6L), + Arguments.arguments(7482638336L, 939524096L, 7136L, 896L, 6L) Review Comment: Here the estTimeLeft are both 6, one must be wrong. -- 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