溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊(cè)×
其他方式登錄
點(diǎn)擊 登錄注冊(cè) 即表示同意《億速云用戶服務(wù)條款》

如何實(shí)現(xiàn)88秒插入1000萬(wàn)條數(shù)據(jù)到MySQL數(shù)據(jù)庫(kù)表

發(fā)布時(shí)間:2021-07-29 11:26:57 來(lái)源:億速云 閱讀:270 作者:小新 欄目:MySQL數(shù)據(jù)庫(kù)

這篇文章將為大家詳細(xì)講解有關(guān)如何實(shí)現(xiàn)88秒插入1000萬(wàn)條數(shù)據(jù)到MySQL數(shù)據(jù)庫(kù)表,小編覺得挺實(shí)用的,因此分享給大家做個(gè)參考,希望大家閱讀完這篇文章后可以有所收獲。

我用到的數(shù)據(jù)庫(kù)為,mysql數(shù)據(jù)庫(kù)5.7版本的

首先自己準(zhǔn)備好數(shù)據(jù)庫(kù)表

其實(shí)我在插入1000萬(wàn)條數(shù)據(jù)的時(shí)候遇到了一些問題,現(xiàn)在先來(lái)解決他們,一開始我插入100萬(wàn)條數(shù)據(jù)時(shí)候報(bào)錯(cuò),控制臺(tái)的信息如下:

com.mysql.jdbc.PacketTooBigException: Packet for query is too large (4232009 > 4194304). You can change this value on the server by setting the max_allowed_packet' variable.

出現(xiàn)上面的錯(cuò)誤是因?yàn)閿?shù)據(jù)庫(kù)表的 max_allowed_packet 這個(gè)配置沒配置足夠大,因?yàn)槟J(rèn)的為4M的,后來(lái)我調(diào)為100M就沒報(bào)錯(cuò)了

set global max_allowed_packet = 100*1024*1024*

記住,設(shè)置好后重新登錄數(shù)據(jù)庫(kù)才能看的設(shè)置后的值

show VARIABLES like '%max_allowed_packet%'

代碼如下:

package insert;
import java.sql.Connection;
import java.sql.DriverManager;
import java.sql.SQLException;
import java.util.Date;
import com.mysql.jdbc.PreparedStatement;
public class InsertTest {
   public static void main(String[] args) throws ClassNotFoundException, SQLException {
     final String url = "jdbc:mysql://127.0.0.1/teacher" ; 
     final String name = "com.mysql.jdbc.Driver" ; 
     final String user = "root" ; 
     final String password = "123456" ; 
     Connection conn = null ; 
     Class.forName(name); //指定連接類型 
     conn = DriverManager.getConnection(url, user, password); //獲取連接 
     if (conn!= null ) {
       System.out.println( "獲取連接成功" );
       insert(conn);
     } else {
       System.out.println( "獲取連接失敗" );
     }
   }
   public static void insert(Connection conn) {
     // 開始時(shí)間
     Long begin = new Date().getTime();
     // sql前綴
     String prefix = "INSERT INTO t_teacher (id,t_name,t_password,sex,description,pic_url,school_name,regist_date,remark) VALUES " ;
     try {
       // 保存sql后綴
       StringBuffer suffix = new StringBuffer();
       // 設(shè)置事務(wù)為非自動(dòng)提交
       conn.setAutoCommit( false );
       // 比起st,pst會(huì)更好些
       PreparedStatement pst = (PreparedStatement) conn.prepareStatement( "" ); //準(zhǔn)備執(zhí)行語(yǔ)句
       // 外層循環(huán),總提交事務(wù)次數(shù)
       for ( int i = 1 ; i <= 100 ; i++) {
         suffix = new StringBuffer();
         // 第j次提交步長(zhǎng)
         for ( int j = 1 ; j <= 100000 ; j++) {
           // 構(gòu)建SQL后綴
           suffix.append( "('" + uutil.UUIDUtil.getUUID()+ "','" +i*j+ "','123456'" + ",'男'" + ",'教師'" + ",'www.bbk.com'" + ",'XX大學(xué)'" + ",'" + "2016-08-12 14:43:26" + "','備注'" + ")," );
         }
         // 構(gòu)建完整SQL
         String sql = prefix + suffix.substring( 0 , suffix.length() - 1 );
         // 添加執(zhí)行SQL
         pst.addBatch(sql);
         // 執(zhí)行操作
         pst.executeBatch();
         // 提交事務(wù)
         conn.commit();
         // 清空上一次添加的數(shù)據(jù)
         suffix = new StringBuffer();
       }
       // 頭等連接
       pst.close();
       conn.close();
     } catch (SQLException e) {
       e.printStackTrace();
     }
     // 結(jié)束時(shí)間
     Long end = new Date().getTime();
     // 耗時(shí)
     System.out.println( "1000萬(wàn)條數(shù)據(jù)插入花費(fèi)時(shí)間 : " + (end - begin) / 1000 + " s" );
     System.out.println( "插入完成" );
   }
}

關(guān)于“如何實(shí)現(xiàn)88秒插入1000萬(wàn)條數(shù)據(jù)到MySQL數(shù)據(jù)庫(kù)表”這篇文章就分享到這里了,希望以上內(nèi)容可以對(duì)大家有一定的幫助,使各位可以學(xué)到更多知識(shí),如果覺得文章不錯(cuò),請(qǐng)把它分享出去讓更多的人看到。

向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI