clickhouse-rs
clickhouse-rs copied to clipboard
Bulk inserts
Are bulk inserts supported or will it simply generate a lot of separate inserts? There is a huge performance difference between those in clickhouse, I see my inserts being unreasonably slow(3 seconds to inserts 100 rows)... Seems like this lib can only generate separate insert statements...
This lib tries to inserts the whole block you pass per one request or split the block if rows number greater than 1 048 576
.
Could you show an example of code witch reproduce the problem?