chl-wxp commented on code in PR #10609: URL: https://github.com/apache/seatunnel/pull/10609#discussion_r2999122956
########## docs/en/connectors/sink/Jdbc.md: ########## @@ -157,6 +158,10 @@ The number of retries to submit failed (executeBatch) For batch writing, when the number of buffered records reaches the number of `batch_size` or the time reaches `checkpoint.interval` , the data will be flushed into the database +### batch_interval_ms [long] + +The interval (in milliseconds) for periodic batch flush. When set to a value greater than 0, a background thread will periodically flush buffered records to the database, even if `batch_size` has not been reached. Default value is `0` (disabled). Has no effect when `batch_size` is `1`. + Review Comment: What happens if I configure both `batch_interval_ms` and `is_exactly_once=true` should be stated in the documentation. -- 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]
