-
Notifications
You must be signed in to change notification settings - Fork 83
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Could a batchSize parameter be added to insertTable? #297
Comments
The aim of the |
ah! i missed that! that works for me, though maybe couldn't hurt to add it as a param with default value 10000 for more flexibility/clarity? |
Well, the behavior can actually be different depending on the database platform, and of course it is a whole different story when you enable bulk loading. The |
makes sense. it worked like a charm as-is in Snowflake - i hadn't even tried it before because i thought it wasn't possible to specify the batch size and assumed the default was 1 😂 🤦 |
Would it be possible to add a
batchSize
parameter (like the one indbWriteTable
) toinsertTable
?Use case: I'd like to provide the option to specify a
tempEmulationSchema
, and to insert data in batches.The text was updated successfully, but these errors were encountered: