danny0405 commented on PR #9544:
URL: https://github.com/apache/hudi/pull/9544#issuecomment-1694877549

   For sql users, in `HoodieTableSink`, we explicitly set up the async 
compaction as false when the source input is bounded:
   
   ```java
         if (OptionsResolver.needsAsyncCompaction(conf)) {
           // use synchronous compaction for bounded source.
           if (context.isBounded()) {
             conf.setBoolean(FlinkOptions.COMPACTION_ASYNC_ENABLED, false);
           }
           return Pipelines.compact(conf, pipeline);
         }
   ```
   
   So does the problem exist only for DataStream users?


-- 
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