How to set the inserts frequency? #208
-
There is an option to set the batch size: However, I would to like to set the ingestion interval instead so that Clickhouse Sink generates at most one insert per second regardless of the data size. Currently I have 30-100 inserts per second which leads to high CPU and IO utilization. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
At this moment, we don't have a setting for that - the connector just tries to insert whatever records Kafka Connect sends to it. There are a few creative options available (but nothing exactly matching):
Hope those help! |
Beta Was this translation helpful? Give feedback.
At this moment, we don't have a setting for that - the connector just tries to insert whatever records Kafka Connect sends to it.
There are a few creative options available (but nothing exactly matching):
Number of Workers: If you were to reduce the numb…