JDBC批量Insert深度优化(有事务)
生活随笔
收集整理的這篇文章主要介紹了
JDBC批量Insert深度优化(有事务)
小編覺得挺不錯(cuò)的,現(xiàn)在分享給大家,幫大家做個(gè)參考.
JDBC批量Insert深度優(yōu)化(有事務(wù)) 環(huán)境: MySQL 5.1 RedHat Linux AS 5 JavaSE 1.5 DbConnectionBroker 微型數(shù)據(jù)庫連接池 測試的方案: 執(zhí)行10萬次Insert語句,使用不同方式。 A組:靜態(tài)SQL,自動(dòng)提交,沒事務(wù)控制(MyISAM引擎) 1、逐條執(zhí)行10萬次 2、分批執(zhí)行將10萬分成m批,每批n條,分多種分批方案來執(zhí)行。 B組:預(yù)編譯模式SQL,自動(dòng)提交,沒事務(wù)控制(MyISAM引擎) 1、逐條執(zhí)行10萬次 2、分批執(zhí)行將10萬分成m批,每批n條,分多種分批方案來執(zhí)行。 ------------------------------------------------------------------------------------------- C組:靜態(tài)SQL,不自動(dòng)提交,有事務(wù)控制(InnoDB引擎) 1、逐條執(zhí)行10萬次 2、分批執(zhí)行將10萬分成m批,每批n條,分多種分批方案來執(zhí)行。 D組:預(yù)編譯模式SQL,不自動(dòng)提交,有事務(wù)控制(InnoDB引擎) 1、逐條執(zhí)行10萬次 2、分批執(zhí)行將10萬分成m批,每批n條,分多種分批方案來執(zhí)行。 本次主要測試C、D組,并得出測試結(jié)果。 SQL代碼 DROP TABLE IF EXISTS tuser;
CREATE TABLE tuser (
????id bigint(20) NOT NULL AUTO_INCREMENT,
????name varchar(12) DEFAULT NULL,
????remark varchar(24) DEFAULT NULL,
????createtime datetime DEFAULT NULL,
????updatetime datetime DEFAULT NULL,
????PRIMARY KEY (id)
) ENGINE=InnoDB AUTO_INCREMENT=1 DEFAULT CHARSET=utf8; C、D組測試代碼: package testbatch;
import java.io.IOException;
import java.sql.*;
/**
* JDBC批量Insert優(yōu)化(下)
*
* @author leizhimin 2009-7-29 10:03:10
*/
public class TestBatch {
????????public static DbConnectionBroker myBroker = null;
????????static {
????????????????try {
????????????????????????myBroker = new DbConnectionBroker("com.mysql.jdbc.Driver",
????????????????????????????????????????"jdbc:mysql://192.168.104.163:3306/testdb",
????????????????????????????????????????"vcom", "vcom", 2, 4,
????????????????????????????????????????"c:\\testdb.log", 0.01);
????????????????} catch (IOException e) {
????????????????????????e.printStackTrace();
????????????????}
????????}
????????/**
???????? * 初始化測試環(huán)境
???????? *
???????? * @throws SQLException 異常時(shí)拋出
???????? */
????????public static void init() throws SQLException {
????????????????Connection conn = myBroker.getConnection();
????????????????conn.setAutoCommit(false);
????????????????Statement stmt = conn.createStatement();
????????????????stmt.addBatch("DROP TABLE IF EXISTS tuser");
????????????????stmt.addBatch("CREATE TABLE tuser (\n" +
????????????????????????????????"????id bigint(20) NOT NULL AUTO_INCREMENT,\n" +
????????????????????????????????"????name varchar(12) DEFAULT NULL,\n" +
????????????????????????????????"????remark varchar(24) DEFAULT NULL,\n" +
????????????????????????????????"????createtime datetime DEFAULT NULL,\n" +
????????????????????????????????"????updatetime datetime DEFAULT NULL,\n" +
????????????????????????????????"????PRIMARY KEY (id)\n" +
????????????????????????????????") ENGINE=InnoDB AUTO_INCREMENT=1 DEFAULT CHARSET=utf8");
????????????????stmt.executeBatch();
????????????????conn.commit();
????????????????myBroker.freeConnection(conn);
????????}
????????/**
???????? * 100000條靜態(tài)SQL插入
???????? *
???????? * @throws Exception 異常時(shí)拋出
???????? */
????????public static void testInsert() throws Exception {
????????????????init();???????? //初始化環(huán)境
????????????????Long start = System.currentTimeMillis();
????????????????for (int i = 0; i < 100000; i++) {
????????????????????????String sql = "\n" +
????????????????????????????????????????"insert into testdb.tuser \n" +
????????????????????????????????????????"\t(name, \n" +
????????????????????????????????????????"\tremark, \n" +
????????????????????????????????????????"\tcreatetime, \n" +
????????????????????????????????????????"\tupdatetime\n" +
????????????????????????????????????????"\t)\n" +
????????????????????????????????????????"\tvalues\n" +
????????????????????????????????????????"\t('" + RandomToolkit.generateString(12) + "', \n" +
????????????????????????????????????????"\t'" + RandomToolkit.generateString(24) + "', \n" +
????????????????????????????????????????"\tnow(), \n" +
????????????????????????????????????????"\tnow()\n" +
????????????????????????????????????????")";
????????????????????????Connection conn = myBroker.getConnection();
????????????????????????conn.setAutoCommit(false);
????????????????????????Statement stmt = conn.createStatement();
????????????????????????stmt.execute(sql);
????????????????????????conn.commit();
????????????????????????myBroker.freeConnection(conn);
????????????????}
????????????????Long end = System.currentTimeMillis();
????????????????System.out.println("單條執(zhí)行100000條Insert操作,共耗時(shí):" + (end - start) / 1000f + "秒!");
????????}
????????/**
???????? * 批處理執(zhí)行靜態(tài)SQL測試
???????? *
???????? * @param m 批次
???????? * @param n 每批數(shù)量
???????? * @throws Exception 異常時(shí)拋出
???????? */
????????public static void testInsertBatch(int m, int n) throws Exception {
????????????????init();???????????? //初始化環(huán)境
????????????????Long start = System.currentTimeMillis();
????????????????for (int i = 0; i < m; i++) {
????????????????????????//從池中獲取連接
????????????????????????Connection conn = myBroker.getConnection();
????????????????????????conn.setAutoCommit(false);
????????????????????????Statement stmt = conn.createStatement();
????????????????????????for (int k = 0; k < n; k++) {
????????????????????????????????String sql = "\n" +
????????????????????????????????????????????????"insert into testdb.tuser \n" +
????????????????????????????????????????????????"\t(name, \n" +
????????????????????????????????????????????????"\tremark, \n" +
????????????????????????????????????????????????"\tcreatetime, \n" +
????????????????????????????????????????????????"\tupdatetime\n" +
????????????????????????????????????????????????"\t)\n" +
????????????????????????????????????????????????"\tvalues\n" +
????????????????????????????????????????????????"\t('" + RandomToolkit.generateString(12) + "', \n" +
????????????????????????????????????????????????"\t'" + RandomToolkit.generateString(24) + "', \n" +
????????????????????????????????????????????????"\tnow(), \n" +
????????????????????????????????????????????????"\tnow()\n" +
????????????????????????????????????????????????")";
????????????????????????????????//加入批處理
????????????????????????????????stmt.addBatch(sql);
????????????????????????}
????????????????????????stmt.executeBatch();????//執(zhí)行批處理
????????????????????????conn.commit();
//????????????????????????stmt.clearBatch();????????//清理批處理
????????????????????????stmt.close();
????????????????????????myBroker.freeConnection(conn); //連接歸池
????????????????}
????????????????Long end = System.currentTimeMillis();
????????????????System.out.println("批量執(zhí)行" + m + "*" + n + "=" + m * n + "條Insert操作,共耗時(shí):" + (end - start) / 1000f + "秒!");
????????}
????????/**
???????? * 100000條預(yù)定義SQL插入
???????? *
???????? * @throws Exception 異常時(shí)拋出
???????? */
????????public static void testInsert2() throws Exception {???? //單條執(zhí)行100000條Insert操作,共耗時(shí):40.422秒!
????????????????init();???????? //初始化環(huán)境
????????????????Long start = System.currentTimeMillis();
????????????????String sql = "" +
????????????????????????????????"insert into testdb.tuser\n" +
????????????????????????????????"????(name, remark, createtime, updatetime)\n" +
????????????????????????????????"values\n" +
????????????????????????????????"????(?, ?, ?, ?)";
????????????????for (int i = 0; i < 100000; i++) {
????????????????????????Connection conn = myBroker.getConnection();
????????????????????????conn.setAutoCommit(false);
????????????????????????PreparedStatement pstmt = conn.prepareStatement(sql);
????????????????????????pstmt.setString(1, RandomToolkit.generateString(12));
????????????????????????pstmt.setString(2, RandomToolkit.generateString(24));
????????????????????????pstmt.setDate(3, new Date(System.currentTimeMillis()));
????????????????????????pstmt.setDate(4, new Date(System.currentTimeMillis()));
????????????????????????pstmt.executeUpdate();
????????????????????????conn.commit();
????????????????????????pstmt.close();
????????????????????????myBroker.freeConnection(conn);
????????????????}
????????????????Long end = System.currentTimeMillis();
????????????????System.out.println("單條執(zhí)行100000條Insert操作,共耗時(shí):" + (end - start) / 1000f + "秒!");
????????}
????????/**
???????? * 批處理執(zhí)行預(yù)處理SQL測試
???????? *
???????? * @param m 批次
???????? * @param n 每批數(shù)量
???????? * @throws Exception 異常時(shí)拋出
???????? */
????????public static void testInsertBatch2(int m, int n) throws Exception {
????????????????init();???????????? //初始化環(huán)境
????????????????Long start = System.currentTimeMillis();
????????????????String sql = "" +
????????????????????????????????"insert into testdb.tuser\n" +
????????????????????????????????"????(name, remark, createtime, updatetime)\n" +
????????????????????????????????"values\n" +
????????????????????????????????"????(?, ?, ?, ?)";
????????????????for (int i = 0; i < m; i++) {
????????????????????????//從池中獲取連接
????????????????????????Connection conn = myBroker.getConnection();
????????????????????????conn.setAutoCommit(false);
????????????????????????PreparedStatement pstmt = conn.prepareStatement(sql);
????????????????????????for (int k = 0; k < n; k++) {
????????????????????????????????pstmt.setString(1, RandomToolkit.generateString(12));
????????????????????????????????pstmt.setString(2, RandomToolkit.generateString(24));
????????????????????????????????pstmt.setDate(3, new Date(System.currentTimeMillis()));
????????????????????????????????pstmt.setDate(4, new Date(System.currentTimeMillis()));
????????????????????????????????//加入批處理
????????????????????????????????pstmt.addBatch();
????????????????????????}
????????????????????????pstmt.executeBatch();????//執(zhí)行批處理
????????????????????????conn.commit();
//????????????????????????pstmt.clearBatch();????????//清理批處理
????????????????????????pstmt.close();
????????????????????????myBroker.freeConnection(conn); //連接歸池
????????????????}
????????????????Long end = System.currentTimeMillis();
????????????????System.out.println("批量執(zhí)行" + m + "*" + n + "=" + m * n + "條Insert操作,共耗時(shí):" + (end - start) / 1000f + "秒!");
????????}
????????public static void main(String[] args) throws Exception {
????????????????init();
????????????????Long start = System.currentTimeMillis();
????????????????System.out.println("--------C組測試----------");
????????????????testInsert();
????????????????testInsertBatch(100, 1000);
????????????????testInsertBatch(250, 400);
????????????????testInsertBatch(400, 250);
????????????????testInsertBatch(500, 200);
????????????????testInsertBatch(1000, 100);
????????????????testInsertBatch(2000, 50);
????????????????testInsertBatch(2500, 40);
????????????????testInsertBatch(5000, 20);
????????????????Long end1 = System.currentTimeMillis();
????????????????System.out.println("C組測試過程結(jié)束,全部測試耗時(shí):" + (end1 - start) / 1000f + "秒!");
????????????????System.out.println("--------D組測試----------");
????????????????testInsert2();
????????????????testInsertBatch2(100, 1000);
????????????????testInsertBatch2(250, 400);
????????????????testInsertBatch2(400, 250);
????????????????testInsertBatch2(500, 200);
????????????????testInsertBatch2(1000, 100);
????????????????testInsertBatch2(2000, 50);
????????????????testInsertBatch2(2500, 40);
????????????????testInsertBatch2(5000, 20);
????????????????Long end2 = System.currentTimeMillis();
????????????????System.out.println("D組測試過程結(jié)束,全部測試耗時(shí):" + (end2 - end1) / 1000f + "秒!");
????????}
} 執(zhí)行結(jié)果: --------C組測試----------
單條執(zhí)行100000條Insert操作,共耗時(shí):103.656秒!
批量執(zhí)行100*1000=100000條Insert操作,共耗時(shí):31.328秒!
批量執(zhí)行250*400=100000條Insert操作,共耗時(shí):31.406秒!
批量執(zhí)行400*250=100000條Insert操作,共耗時(shí):31.75秒!
批量執(zhí)行500*200=100000條Insert操作,共耗時(shí):31.438秒!
批量執(zhí)行1000*100=100000條Insert操作,共耗時(shí):31.968秒!
批量執(zhí)行2000*50=100000條Insert操作,共耗時(shí):32.938秒!
批量執(zhí)行2500*40=100000條Insert操作,共耗時(shí):33.141秒!
批量執(zhí)行5000*20=100000條Insert操作,共耗時(shí):35.265秒!
C組測試過程結(jié)束,全部測試耗時(shí):363.656秒!
--------D組測試----------
單條執(zhí)行100000條Insert操作,共耗時(shí):107.61秒!
批量執(zhí)行100*1000=100000條Insert操作,共耗時(shí):32.64秒!
批量執(zhí)行250*400=100000條Insert操作,共耗時(shí):32.641秒!
批量執(zhí)行400*250=100000條Insert操作,共耗時(shí):33.109秒!
批量執(zhí)行500*200=100000條Insert操作,共耗時(shí):32.859秒!
批量執(zhí)行1000*100=100000條Insert操作,共耗時(shí):33.547秒!
批量執(zhí)行2000*50=100000條Insert操作,共耗時(shí):34.312秒!
批量執(zhí)行2500*40=100000條Insert操作,共耗時(shí):34.672秒!
批量執(zhí)行5000*20=100000條Insert操作,共耗時(shí):36.672秒!
D組測試過程結(jié)束,全部測試耗時(shí):378.922秒!
測試結(jié)果意想不到吧,最短時(shí)間竟然超過上篇。觀察整個(gè)測試結(jié)果,發(fā)現(xiàn)總時(shí)間很長,原因是逐條執(zhí)行的效率太低了。 結(jié)論: 在本測試條件下,得出結(jié)論: 數(shù)據(jù)庫連接池控制下,不自動(dòng)提交,事務(wù)控制(InnoDB引擎) ? 1、逐條執(zhí)行的效率很低很低,盡可能避免逐條執(zhí)行。 2、事務(wù)控制下,靜態(tài)SQL的效率超過預(yù)處理SQL。 3、分批的大小對效率影響挺大的,一般來說,事務(wù)控制下,分批大小在100-1000之間比較合適。 4、談到優(yōu)化方式,上面的批處理就是很好的優(yōu)化策略。 ? ? 大總結(jié): ? 對比上篇沒事務(wù)的測試結(jié)果,得出一個(gè)全面的結(jié)論: ? 1、連接池最基本的也是最重要的優(yōu)化策略,總能大幅提高性能。 ? 2、批處理在效率上總是比逐條處理有優(yōu)勢,要處理的數(shù)據(jù)的記錄條數(shù)越大,批處理的優(yōu)勢越明顯,批處理還有一個(gè)好處就是減少了對數(shù)據(jù)庫的鏈接次數(shù),從而減輕數(shù)據(jù)庫的壓力。 ? 3、批處理執(zhí)行SQL的時(shí)候,批處理的分批的大小與數(shù)據(jù)庫的吞吐量以及硬件配置有很大關(guān)系,需要通過測試找到最佳的分批大小,一般在50-1000之間。 ? 4、預(yù)處理SQL在沒事務(wù)的表上效率較高,在有實(shí)物的情況下比靜態(tài)SQL稍有不及。但預(yù)定義SQL還有個(gè)好處就是消耗的內(nèi)存較少,靜態(tài)SQL串會(huì)占用大量的內(nèi)存資源,容易導(dǎo)致內(nèi)存溢出的問題。因此批量執(zhí)行時(shí)候可以優(yōu)先選擇預(yù)定義SQL。 ? 5、在批處理執(zhí)行的時(shí)候,每批執(zhí)行完成后,最好顯式的調(diào)用pstmt.close()或stmt.close()方法,以便盡快釋放執(zhí)行過的SQL語句,提高內(nèi)存利用率。 ? 6、對于有大量SELECT操作,MyISAM是更好的選擇;對于有大量INSERT和UPDATE操作的表,InnoDB效率更好。 ? 7、雖然測試結(jié)果只能反映特定情況下的一些事實(shí),以上的優(yōu)化策略是普遍策略,可以明顯縮短尋找最優(yōu)策略的時(shí)間,對于效率要求很高的程序,還應(yīng)該做并發(fā)性等測試。 ? 8、測試是件很辛苦的事情,你需要有大量的事實(shí)來證明你的優(yōu)化是有效的,而不能單單憑經(jīng)驗(yàn),因?yàn)槊總€(gè)機(jī)器的環(huán)境都不一樣,使用的方式也不同。
CREATE TABLE tuser (
????id bigint(20) NOT NULL AUTO_INCREMENT,
????name varchar(12) DEFAULT NULL,
????remark varchar(24) DEFAULT NULL,
????createtime datetime DEFAULT NULL,
????updatetime datetime DEFAULT NULL,
????PRIMARY KEY (id)
) ENGINE=InnoDB AUTO_INCREMENT=1 DEFAULT CHARSET=utf8; C、D組測試代碼: package testbatch;
import java.io.IOException;
import java.sql.*;
/**
* JDBC批量Insert優(yōu)化(下)
*
* @author leizhimin 2009-7-29 10:03:10
*/
public class TestBatch {
????????public static DbConnectionBroker myBroker = null;
????????static {
????????????????try {
????????????????????????myBroker = new DbConnectionBroker("com.mysql.jdbc.Driver",
????????????????????????????????????????"jdbc:mysql://192.168.104.163:3306/testdb",
????????????????????????????????????????"vcom", "vcom", 2, 4,
????????????????????????????????????????"c:\\testdb.log", 0.01);
????????????????} catch (IOException e) {
????????????????????????e.printStackTrace();
????????????????}
????????}
????????/**
???????? * 初始化測試環(huán)境
???????? *
???????? * @throws SQLException 異常時(shí)拋出
???????? */
????????public static void init() throws SQLException {
????????????????Connection conn = myBroker.getConnection();
????????????????conn.setAutoCommit(false);
????????????????Statement stmt = conn.createStatement();
????????????????stmt.addBatch("DROP TABLE IF EXISTS tuser");
????????????????stmt.addBatch("CREATE TABLE tuser (\n" +
????????????????????????????????"????id bigint(20) NOT NULL AUTO_INCREMENT,\n" +
????????????????????????????????"????name varchar(12) DEFAULT NULL,\n" +
????????????????????????????????"????remark varchar(24) DEFAULT NULL,\n" +
????????????????????????????????"????createtime datetime DEFAULT NULL,\n" +
????????????????????????????????"????updatetime datetime DEFAULT NULL,\n" +
????????????????????????????????"????PRIMARY KEY (id)\n" +
????????????????????????????????") ENGINE=InnoDB AUTO_INCREMENT=1 DEFAULT CHARSET=utf8");
????????????????stmt.executeBatch();
????????????????conn.commit();
????????????????myBroker.freeConnection(conn);
????????}
????????/**
???????? * 100000條靜態(tài)SQL插入
???????? *
???????? * @throws Exception 異常時(shí)拋出
???????? */
????????public static void testInsert() throws Exception {
????????????????init();???????? //初始化環(huán)境
????????????????Long start = System.currentTimeMillis();
????????????????for (int i = 0; i < 100000; i++) {
????????????????????????String sql = "\n" +
????????????????????????????????????????"insert into testdb.tuser \n" +
????????????????????????????????????????"\t(name, \n" +
????????????????????????????????????????"\tremark, \n" +
????????????????????????????????????????"\tcreatetime, \n" +
????????????????????????????????????????"\tupdatetime\n" +
????????????????????????????????????????"\t)\n" +
????????????????????????????????????????"\tvalues\n" +
????????????????????????????????????????"\t('" + RandomToolkit.generateString(12) + "', \n" +
????????????????????????????????????????"\t'" + RandomToolkit.generateString(24) + "', \n" +
????????????????????????????????????????"\tnow(), \n" +
????????????????????????????????????????"\tnow()\n" +
????????????????????????????????????????")";
????????????????????????Connection conn = myBroker.getConnection();
????????????????????????conn.setAutoCommit(false);
????????????????????????Statement stmt = conn.createStatement();
????????????????????????stmt.execute(sql);
????????????????????????conn.commit();
????????????????????????myBroker.freeConnection(conn);
????????????????}
????????????????Long end = System.currentTimeMillis();
????????????????System.out.println("單條執(zhí)行100000條Insert操作,共耗時(shí):" + (end - start) / 1000f + "秒!");
????????}
????????/**
???????? * 批處理執(zhí)行靜態(tài)SQL測試
???????? *
???????? * @param m 批次
???????? * @param n 每批數(shù)量
???????? * @throws Exception 異常時(shí)拋出
???????? */
????????public static void testInsertBatch(int m, int n) throws Exception {
????????????????init();???????????? //初始化環(huán)境
????????????????Long start = System.currentTimeMillis();
????????????????for (int i = 0; i < m; i++) {
????????????????????????//從池中獲取連接
????????????????????????Connection conn = myBroker.getConnection();
????????????????????????conn.setAutoCommit(false);
????????????????????????Statement stmt = conn.createStatement();
????????????????????????for (int k = 0; k < n; k++) {
????????????????????????????????String sql = "\n" +
????????????????????????????????????????????????"insert into testdb.tuser \n" +
????????????????????????????????????????????????"\t(name, \n" +
????????????????????????????????????????????????"\tremark, \n" +
????????????????????????????????????????????????"\tcreatetime, \n" +
????????????????????????????????????????????????"\tupdatetime\n" +
????????????????????????????????????????????????"\t)\n" +
????????????????????????????????????????????????"\tvalues\n" +
????????????????????????????????????????????????"\t('" + RandomToolkit.generateString(12) + "', \n" +
????????????????????????????????????????????????"\t'" + RandomToolkit.generateString(24) + "', \n" +
????????????????????????????????????????????????"\tnow(), \n" +
????????????????????????????????????????????????"\tnow()\n" +
????????????????????????????????????????????????")";
????????????????????????????????//加入批處理
????????????????????????????????stmt.addBatch(sql);
????????????????????????}
????????????????????????stmt.executeBatch();????//執(zhí)行批處理
????????????????????????conn.commit();
//????????????????????????stmt.clearBatch();????????//清理批處理
????????????????????????stmt.close();
????????????????????????myBroker.freeConnection(conn); //連接歸池
????????????????}
????????????????Long end = System.currentTimeMillis();
????????????????System.out.println("批量執(zhí)行" + m + "*" + n + "=" + m * n + "條Insert操作,共耗時(shí):" + (end - start) / 1000f + "秒!");
????????}
????????/**
???????? * 100000條預(yù)定義SQL插入
???????? *
???????? * @throws Exception 異常時(shí)拋出
???????? */
????????public static void testInsert2() throws Exception {???? //單條執(zhí)行100000條Insert操作,共耗時(shí):40.422秒!
????????????????init();???????? //初始化環(huán)境
????????????????Long start = System.currentTimeMillis();
????????????????String sql = "" +
????????????????????????????????"insert into testdb.tuser\n" +
????????????????????????????????"????(name, remark, createtime, updatetime)\n" +
????????????????????????????????"values\n" +
????????????????????????????????"????(?, ?, ?, ?)";
????????????????for (int i = 0; i < 100000; i++) {
????????????????????????Connection conn = myBroker.getConnection();
????????????????????????conn.setAutoCommit(false);
????????????????????????PreparedStatement pstmt = conn.prepareStatement(sql);
????????????????????????pstmt.setString(1, RandomToolkit.generateString(12));
????????????????????????pstmt.setString(2, RandomToolkit.generateString(24));
????????????????????????pstmt.setDate(3, new Date(System.currentTimeMillis()));
????????????????????????pstmt.setDate(4, new Date(System.currentTimeMillis()));
????????????????????????pstmt.executeUpdate();
????????????????????????conn.commit();
????????????????????????pstmt.close();
????????????????????????myBroker.freeConnection(conn);
????????????????}
????????????????Long end = System.currentTimeMillis();
????????????????System.out.println("單條執(zhí)行100000條Insert操作,共耗時(shí):" + (end - start) / 1000f + "秒!");
????????}
????????/**
???????? * 批處理執(zhí)行預(yù)處理SQL測試
???????? *
???????? * @param m 批次
???????? * @param n 每批數(shù)量
???????? * @throws Exception 異常時(shí)拋出
???????? */
????????public static void testInsertBatch2(int m, int n) throws Exception {
????????????????init();???????????? //初始化環(huán)境
????????????????Long start = System.currentTimeMillis();
????????????????String sql = "" +
????????????????????????????????"insert into testdb.tuser\n" +
????????????????????????????????"????(name, remark, createtime, updatetime)\n" +
????????????????????????????????"values\n" +
????????????????????????????????"????(?, ?, ?, ?)";
????????????????for (int i = 0; i < m; i++) {
????????????????????????//從池中獲取連接
????????????????????????Connection conn = myBroker.getConnection();
????????????????????????conn.setAutoCommit(false);
????????????????????????PreparedStatement pstmt = conn.prepareStatement(sql);
????????????????????????for (int k = 0; k < n; k++) {
????????????????????????????????pstmt.setString(1, RandomToolkit.generateString(12));
????????????????????????????????pstmt.setString(2, RandomToolkit.generateString(24));
????????????????????????????????pstmt.setDate(3, new Date(System.currentTimeMillis()));
????????????????????????????????pstmt.setDate(4, new Date(System.currentTimeMillis()));
????????????????????????????????//加入批處理
????????????????????????????????pstmt.addBatch();
????????????????????????}
????????????????????????pstmt.executeBatch();????//執(zhí)行批處理
????????????????????????conn.commit();
//????????????????????????pstmt.clearBatch();????????//清理批處理
????????????????????????pstmt.close();
????????????????????????myBroker.freeConnection(conn); //連接歸池
????????????????}
????????????????Long end = System.currentTimeMillis();
????????????????System.out.println("批量執(zhí)行" + m + "*" + n + "=" + m * n + "條Insert操作,共耗時(shí):" + (end - start) / 1000f + "秒!");
????????}
????????public static void main(String[] args) throws Exception {
????????????????init();
????????????????Long start = System.currentTimeMillis();
????????????????System.out.println("--------C組測試----------");
????????????????testInsert();
????????????????testInsertBatch(100, 1000);
????????????????testInsertBatch(250, 400);
????????????????testInsertBatch(400, 250);
????????????????testInsertBatch(500, 200);
????????????????testInsertBatch(1000, 100);
????????????????testInsertBatch(2000, 50);
????????????????testInsertBatch(2500, 40);
????????????????testInsertBatch(5000, 20);
????????????????Long end1 = System.currentTimeMillis();
????????????????System.out.println("C組測試過程結(jié)束,全部測試耗時(shí):" + (end1 - start) / 1000f + "秒!");
????????????????System.out.println("--------D組測試----------");
????????????????testInsert2();
????????????????testInsertBatch2(100, 1000);
????????????????testInsertBatch2(250, 400);
????????????????testInsertBatch2(400, 250);
????????????????testInsertBatch2(500, 200);
????????????????testInsertBatch2(1000, 100);
????????????????testInsertBatch2(2000, 50);
????????????????testInsertBatch2(2500, 40);
????????????????testInsertBatch2(5000, 20);
????????????????Long end2 = System.currentTimeMillis();
????????????????System.out.println("D組測試過程結(jié)束,全部測試耗時(shí):" + (end2 - end1) / 1000f + "秒!");
????????}
} 執(zhí)行結(jié)果: --------C組測試----------
單條執(zhí)行100000條Insert操作,共耗時(shí):103.656秒!
批量執(zhí)行100*1000=100000條Insert操作,共耗時(shí):31.328秒!
批量執(zhí)行250*400=100000條Insert操作,共耗時(shí):31.406秒!
批量執(zhí)行400*250=100000條Insert操作,共耗時(shí):31.75秒!
批量執(zhí)行500*200=100000條Insert操作,共耗時(shí):31.438秒!
批量執(zhí)行1000*100=100000條Insert操作,共耗時(shí):31.968秒!
批量執(zhí)行2000*50=100000條Insert操作,共耗時(shí):32.938秒!
批量執(zhí)行2500*40=100000條Insert操作,共耗時(shí):33.141秒!
批量執(zhí)行5000*20=100000條Insert操作,共耗時(shí):35.265秒!
C組測試過程結(jié)束,全部測試耗時(shí):363.656秒!
--------D組測試----------
單條執(zhí)行100000條Insert操作,共耗時(shí):107.61秒!
批量執(zhí)行100*1000=100000條Insert操作,共耗時(shí):32.64秒!
批量執(zhí)行250*400=100000條Insert操作,共耗時(shí):32.641秒!
批量執(zhí)行400*250=100000條Insert操作,共耗時(shí):33.109秒!
批量執(zhí)行500*200=100000條Insert操作,共耗時(shí):32.859秒!
批量執(zhí)行1000*100=100000條Insert操作,共耗時(shí):33.547秒!
批量執(zhí)行2000*50=100000條Insert操作,共耗時(shí):34.312秒!
批量執(zhí)行2500*40=100000條Insert操作,共耗時(shí):34.672秒!
批量執(zhí)行5000*20=100000條Insert操作,共耗時(shí):36.672秒!
D組測試過程結(jié)束,全部測試耗時(shí):378.922秒!
測試結(jié)果意想不到吧,最短時(shí)間竟然超過上篇。觀察整個(gè)測試結(jié)果,發(fā)現(xiàn)總時(shí)間很長,原因是逐條執(zhí)行的效率太低了。 結(jié)論: 在本測試條件下,得出結(jié)論: 數(shù)據(jù)庫連接池控制下,不自動(dòng)提交,事務(wù)控制(InnoDB引擎) ? 1、逐條執(zhí)行的效率很低很低,盡可能避免逐條執(zhí)行。 2、事務(wù)控制下,靜態(tài)SQL的效率超過預(yù)處理SQL。 3、分批的大小對效率影響挺大的,一般來說,事務(wù)控制下,分批大小在100-1000之間比較合適。 4、談到優(yōu)化方式,上面的批處理就是很好的優(yōu)化策略。 ? ? 大總結(jié): ? 對比上篇沒事務(wù)的測試結(jié)果,得出一個(gè)全面的結(jié)論: ? 1、連接池最基本的也是最重要的優(yōu)化策略,總能大幅提高性能。 ? 2、批處理在效率上總是比逐條處理有優(yōu)勢,要處理的數(shù)據(jù)的記錄條數(shù)越大,批處理的優(yōu)勢越明顯,批處理還有一個(gè)好處就是減少了對數(shù)據(jù)庫的鏈接次數(shù),從而減輕數(shù)據(jù)庫的壓力。 ? 3、批處理執(zhí)行SQL的時(shí)候,批處理的分批的大小與數(shù)據(jù)庫的吞吐量以及硬件配置有很大關(guān)系,需要通過測試找到最佳的分批大小,一般在50-1000之間。 ? 4、預(yù)處理SQL在沒事務(wù)的表上效率較高,在有實(shí)物的情況下比靜態(tài)SQL稍有不及。但預(yù)定義SQL還有個(gè)好處就是消耗的內(nèi)存較少,靜態(tài)SQL串會(huì)占用大量的內(nèi)存資源,容易導(dǎo)致內(nèi)存溢出的問題。因此批量執(zhí)行時(shí)候可以優(yōu)先選擇預(yù)定義SQL。 ? 5、在批處理執(zhí)行的時(shí)候,每批執(zhí)行完成后,最好顯式的調(diào)用pstmt.close()或stmt.close()方法,以便盡快釋放執(zhí)行過的SQL語句,提高內(nèi)存利用率。 ? 6、對于有大量SELECT操作,MyISAM是更好的選擇;對于有大量INSERT和UPDATE操作的表,InnoDB效率更好。 ? 7、雖然測試結(jié)果只能反映特定情況下的一些事實(shí),以上的優(yōu)化策略是普遍策略,可以明顯縮短尋找最優(yōu)策略的時(shí)間,對于效率要求很高的程序,還應(yīng)該做并發(fā)性等測試。 ? 8、測試是件很辛苦的事情,你需要有大量的事實(shí)來證明你的優(yōu)化是有效的,而不能單單憑經(jīng)驗(yàn),因?yàn)槊總€(gè)機(jī)器的環(huán)境都不一樣,使用的方式也不同。
總結(jié)
以上是生活随笔為你收集整理的JDBC批量Insert深度优化(有事务)的全部內(nèi)容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: 为右键新建菜单添加内容
- 下一篇: c#中使用多线程访问winform中控件