yihua commented on code in PR #11174:
URL: https://github.com/apache/hudi/pull/11174#discussion_r1622874529


##########
hudi-client/hudi-client-common/src/main/java/org/apache/hudi/table/action/compact/strategy/BoundedIOCompactionStrategy.java:
##########
@@ -44,10 +44,10 @@ public List<HoodieCompactionOperation> 
orderAndFilter(HoodieWriteConfig writeCon
     for (HoodieCompactionOperation op : operations) {
       long opIo = op.getMetrics().get(TOTAL_IO_MB).longValue();
       targetIORemaining -= opIo;
-      finalOperations.add(op);
-      if (targetIORemaining <= 0) {
+      if (targetIORemaining < 0) {
         return finalOperations;
       }
+      finalOperations.add(op);

Review Comment:
   This can lead to starvation if the target IO limit is always smaller than 
the `TOTAL_IO_MB` of the first compaction operation.



-- 
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: commits-unsubscr...@hudi.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org

Reply via email to