-
Notifications
You must be signed in to change notification settings - Fork 428
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
Enable useBulkCopyForBatchInsert for other database types (not only Azure DW) #1443
Comments
This item is in our backlog, but it's not as high priority because Azure DW is the database type that benefits the most from this improvement due to the Azure server delay. By setting isAzureDW to true, the batch insert query might work for simple cases but extending this property officially to other databases is not trivial due to different syntaxes accepted by each database. Which database types are you looking to apply this property for? |
Initially we would like to use it for SQL Server on Windows. In the longer run SQL Server on Azure and maybe on Linux would be nice too. |
Thanks. The team will look into including this feature in the next production release. |
Hi @skluyskens , |
Hi @ulvii, I don't have test results for our application, but in .NET, for other applications I think we easily got 5 times better performance. https://stackoverflow.com/questions/40471004/can-i-get-bulk-insert-like-speeds-when-inserting-from-java-into-sql-server is talking about a factor 10 even. |
#1465 merged. |
This is about extending #331 to other database types.
I already tried this with a simple example for an on-premise SQL Server Installation and I managed to get it working (by forcing the isAzureDW property to true).
This would allow this feature to be used much more often. It would also provide a workaround for #1072.
The text was updated successfully, but these errors were encountered: