ad1happy2go commented on issue #8984:
URL: https://github.com/apache/hudi/issues/8984#issuecomment-1598188637

   @koochiswathiTR For NUM_COMMITS - below is the code it's using to analyse if 
it needs compaction or not. I see your hoodie.compact.inline.max.delta.commits 
property is 100.  it will schedule after 100 commits after last compaction only?
   
   ```      
   case NUM_COMMITS:
           compactable = inlineCompactDeltaCommitMax <= 
latestDeltaCommitInfo.getLeft();
           if (compactable) {
             LOG.info(String.format("The delta commits >= %s, trigger 
compaction scheduler.", inlineCompactDeltaCommitMax));
           }
           break;
   ```
   
   Let me know in case I misunderstood your doubt.


-- 
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: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to