How does the batchInsert actually work? I'm trying...
# exposed
j
How does the batchInsert actually work? I'm trying to insert 50.000 rows at once, and it takes way to long.
t
It uses jdbc batching under the hood, so there is no magic. The speed of insertion depends on a database, jdbc driver and a lot of different options (such as connection bandwidth and does anyone blocks table where you want to insert).
👍 1
j
Thanks, just what I needed to know 🙂