Improve the efficiency of MySQL preparedBatch
See original GitHub issueCurrently prepareBatch
implementation in MySQL is just an emulation for executing preparedQuery
several times, MySQL Client/Server protocol does not support pipelining the requests therefore users don’t benefit much in respect of performance.
MySQL JDBC Connector provides an option rewriteBatchedStatements
to combine multiple inserts into one insert command, this will make better utilization of network because it reduces the round trips here. I think we could support this useful feature in the MySQL client.
Issue Analytics
- State:
- Created 4 years ago
- Comments:23 (18 by maintainers)
Top Results From Across the Web
MySQL Performance Tuning Tips To Optimize Database
Here are the MySQL performance tuning tips you need to know for efficient database optimization. Optimize MySQL queries for faster database ...
Read more >MySQL Performance Tuning: 14 Optimization Tips - phoenixNAP
Improve MySQL performance with these tips. Our tuning guide shows you how to identify MySQL performance bottlenecks and optimize your ...
Read more >Tips to Improve MySQL Query Performance - Bridge Global
Let's dive into the essential and useful tips to improve MySQL Query for speed and performance. 1. Optimize Your Database. You need to...
Read more >MySQL Performance Tuning Tips (that work in 2022) - Devart
MySQL query optimization. Now let's have a look at how to optimize MySQL query for better performance and speed. For those who want...
Read more >MySQL Performance Tuning: Top 10 Easy Tips - Oracle Blogs
MySQL is a proven, reliable database that is quick to set up easy to maintain ... However, that performance can usually be improved...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
thanks @Sanne , my opinion is that a client should in practice remains agnostic of SQL that is tied to the application
On Fri, Sep 3, 2021 at 8:52 AM Sanne Grinovero @.***> wrote:
I will try to find a supportable solution to this