zoukankan      html  css  js  c++  java
  • Batch Insert In Java – JDBC(含中文总结)

    //JDBC提供了数据库batch处理的能力,在数据大批量操作(新增、删除等)的情况下可以大幅度提升系统的性能。

    Let’s see how we can perform batch insert in Java using JDBC APIs. Although you might already knew this, I will try to explain the basic to a bit complex scenarios.

    In this note, we will see how we can use JDBC APIs like Statement andPreparedStatement to insert data in any database in batches. Also we will try to explore scenarios where we can run out of memory and how to optimize the batch operation.

    So first, the basic API to Insert data in database in batches using Java JDBC.

    Simple Batch

    I am calling this a simple batch. The requirement is simple. Execute a list of inserts in batch. Instead of hitting database once for each insert statement, we will using JDBC batch operation and optimize the performance.

    Consider the following code:

    Bad Code

    String [] queries = {
         "insert into employee (name, city, phone) values ('A', 'X', '123')" ,
         "insert into employee (name, city, phone) values ('B', 'Y', '234')" ,
         "insert into employee (name, city, phone) values ('C', 'Z', '345')" ,
    };
                 
    Connection connection = new getConnection();
    Statement statemenet = connection.createStatement();
                 
    for (String query : queries) {
         statemenet.execute(query);
    }
    statemenet.close();
    connection.close();

    This is the BAD code. You are executing each query separately. This hits the database for each insert statement. Consider if you want to insert 1000 records. This is not a good idea.

    We’ll below is the basic code to perform batch insert. Check it out:

    Good Code

    Connection connection = new getConnection();
    Statement statemenet = connection.createStatement();
     
    for (String query : queries) {
         statemenet.addBatch(query);
    }
    statemenet.executeBatch();
    statemenet.close();
    connection.close();

    Note how we used addBatch() method of Statement, instead of directly executing the query. And after adding all the queries we executed them in one go using statement.executeBatch() method. Nothing fancy, just a simple batch insert.

    Note that we have taken the queries from a String array. Instead you may want to make it dynamically. For example:

    import java.sql.Connection;
    import java.sql.Statement;
     
    //...
     
    Connection connection = new getConnection();
    Statement statemenet = connection.createStatement();
     
    for (Employee employee: employees) {
         String query = "insert into employee (name, city) values('"
                 + employee.getName() + "','" + employee.getCity + "')" ;
         statemenet.addBatch(query);
    }
    statemenet.executeBatch();
    statemenet.close();
    connection.close();

    Note how we are creating query dynamically using data from Employee object and adding it in batch to insert in one go. Perfect! isn’t it?

    wait.. You must be thinking what about SQL Injection? Creating queries like this dynamically is very prone to SQL injection. And also the insert query has to be compiled each time.

    Why not to use PreparedStatement instead of simple Statement. Yes, that can be the solution. Check out the below SQL Injection Safe Batch.

    SQL Injection Safe Batch

    Consider the following code:

    import java.sql.Connection;
    import java.sql.PreparedStatement;
     
    //...
     
    String sql = "insert into employee (name, city, phone) values (?, ?, ?)" ;
    Connection connection = new getConnection();
    PreparedStatement ps = connection.prepareStatement(sql);
     
    for (Employee employee: employees) {
     
         ps.setString( 1 , employee.getName());
         ps.setString( 2 , employee.getCity());
         ps.setString( 3 , employee.getPhone());
         ps.addBatch();
    }
    ps.executeBatch();
    ps.close();
    connection.close();        

    Checkout the above code. Beautiful. We used java.sql.PreparedStatement and added insert query in the batch. This is the solution you must implement in your batch insert logic, instead of above Statementone.

    Still there is one problem with this solution. Consider a scenario where you want to insert half million records into database using batch. Well, that may generate OutOfMemoryError:

    java.lang.OutOfMemoryError: Java heap space
         com.mysql.jdbc.ServerPreparedStatement$BatchedBindValues.<init>(ServerPreparedStatement.java:72)
         com.mysql.jdbc.ServerPreparedStatement.addBatch(ServerPreparedStatement.java:330)
         org.apache.commons.dbcp.DelegatingPreparedStatement.addBatch(DelegatingPreparedStatement.java:171)

    This is because you are trying to add everything in one batch and inserting once. Best idea would be to execute batch itself in batch. Check out the below solution.

    Smart Insert: Batch within Batch

    This is a simplest solution. Consider a batch size like 1000 and insert queries in the batches of 1000 queries at a time.

    String sql = "insert into employee (name, city, phone) values (?, ?, ?)" ;
    Connection connection = new getConnection();
    PreparedStatement ps = connection.prepareStatement(sql);
     
    final int batchSize = 1000 ;
    int count = 0 ;
     
    for (Employee employee: employees) {
     
         ps.setString( 1 , employee.getName());
         ps.setString( 2 , employee.getCity());
         ps.setString( 3 , employee.getPhone());
         ps.addBatch();
         
         if (++count % batchSize == 0 ) {
             ps.executeBatch();
         }
    }
    ps.executeBatch(); // insert remaining records
    ps.close();
    connection.close();

    This would be the idea solution. This avoids SQL Injection and also takes care of out of memory issue. Check how we have incremented a counter count and once it reaches batchSize which is 1000, we callexecuteBatch().

    SQL批处理是JDBC性能优化的重要武器,经本人研究总结,批处理的用法有三种。

    package lavasoft.jdbctest; 
    import lavasoft.common.DBToolkit; 
    import java.sql.Connection; 
    import java.sql.PreparedStatement; 
    import java.sql.SQLException; 
    import java.sql.Statement; 

    /** 
    * JDBC的批量操作三种方式 
    */ 
    public class BatchExeSQLTest { 

            public static void main(String[] args) { 
                    exeBatchStaticSQL(); 
            } 

            /** 
             * 批量执行预定义模式的SQL 
             */ 
            public static void exeBatchParparedSQL() { 
                    Connection conn = null; 
                    try { 
                            conn = DBToolkit.getConnection(); 
                            String sql = "insert into testdb.book (kind, name) values (?,?)"; 
                            PreparedStatement pstmt = conn.prepareStatement(sql); 
                            pstmt.setString(1, "java"); 
                            pstmt.setString(2, "jjjj"); 
                            pstmt.addBatch();                     //添加一次预定义参数 
                            pstmt.setString(1, "ccc"); 
                            pstmt.setString(2, "dddd"); 
                            pstmt.addBatch();                     //再添加一次预定义参数 
                            //批量执行预定义SQL 
                            pstmt.executeBatch(); 
                    } catch (SQLException e) { 
                            e.printStackTrace(); 
                    } finally { 
                            DBToolkit.closeConnection(conn); 
                    } 
            } 

            /** 
             * 批量执行混合模式的SQL、有预定义的,还有静态的 
             */ 
            public static void exeBatchMixedSQL() { 
                    Connection conn = null; 
                    try { 
                            conn = DBToolkit.getConnection(); 
                            String sql = "insert into testdb.book (kind, name) values (?,?)"; 
                            PreparedStatement pstmt = conn.prepareStatement(sql); 
                            pstmt.setString(1, "java"); 
                            pstmt.setString(2, "jjjj"); 
                            pstmt.addBatch();    //添加一次预定义参数 
                            pstmt.setString(1, "ccc"); 
                            pstmt.setString(2, "dddd"); 
                            pstmt.addBatch();    //再添加一次预定义参数 
                            //添加一次静态SQL 
                            pstmt.addBatch("update testdb.book set kind = 'JAVA' where kind='java'"); 
                            //批量执行预定义SQL 
                            pstmt.executeBatch(); 
                    } catch (SQLException e) { 
                            e.printStackTrace(); 
                    } finally { 
                            DBToolkit.closeConnection(conn); 
                    } 
            } 

            /** 
             * 执行批量静态的SQL 
             */ 
            public static void exeBatchStaticSQL() { 
                    Connection conn = null; 
                    try { 
                            conn = DBToolkit.getConnection(); 
                            Statement stmt = conn.createStatement(); 
                            //连续添加多条静态SQL 
                            stmt.addBatch("insert into testdb.book (kind, name) values ('java', 'java in aciton')"); 
                            stmt.addBatch("insert into testdb.book (kind, name) values ('c', 'c in aciton')"); 
                            stmt.addBatch("delete from testdb.book where kind ='C#'"); 
                            stmt.addBatch("update testdb.book set kind = 'JAVA' where kind='java'"); 
    //                        stmt.addBatch("select count(*) from testdb.book");                //批量执行不支持Select语句 
                            //执行批量执行 
                            stmt.executeBatch(); 
                    } catch (SQLException e) { 
                            e.printStackTrace(); 
                    } finally { 
                            DBToolkit.closeConnection(conn); 
                    } 
            } 


    注意:JDBC的批处理不能加入select语句,否则会抛异常: 
    java.sql.BatchUpdateException: Can not issue SELECT via executeUpdate(). 
    at com.mysql.jdbc.StatementImpl.executeBatch(StatementImpl.java:1007) 

  • 相关阅读:
    一个Electron的设计缺陷及应对方案
    如何点击穿透Electron不规则窗体的透明区域
    Electron团队为什么要干掉remote模块
    Clickhouse 单机双实例
    Kafka安全认证SASL/PLAIN
    Syslog的使用
    Kafka Consumer
    Kafka Producer客户端
    Kafka客户端操作
    springboot集成flyway实践
  • 原文地址:https://www.cnblogs.com/jiangu66/p/3071961.html
Copyright © 2011-2022 走看看