mysql分段更新 記一次MYSQL更新優化

2021-10-17 20:23:25 字數 2992 閱讀 3024

引言

今天(august 5, 2015 5:34 pm)在給資料庫中一張表的結構做一次調整,新增了幾個字段,後面對之前的資料進行重新整理,重新整理的內容是:對其中的乙個已有欄位url進行匹配,然後更新新加的字段type和typeid。後來就寫了個shell指令碼來刷資料,結果執行shell指令碼後我就懵了,怎麼這麼慢~~~

情景再現

create table `****speed` (

`uin` bigint(20) unsigned not null default 0,

`id` int(11) unsigned not null default 0,

`url` varchar(255) not null default '',

`type` int(11) unsigned not null default 0,

`typeid` varchar(64) not null default '',

key `uin_id` (`uin`,`id`)

) engine=innodb default charset=utf8;

表結構大概是上面這樣的(省略了好多字段),表中只有乙個聯合索引uin_id,而我在更新的時候是下面的思路:

首先根據乙個id範圍獲取到一定數量的資料

select id,url from funkspeed where id>=101 and id<=200;

遍歷所有的資料,對每一條資料進行更新

#首先對資料進行處理,匹配獲取type和typeid

update ****speed set type=[type],typeid=[typeid] where id=[id]

按照上面的思路搞了之後,發現更新特別的慢,平均每秒鐘35個左右,我也是醉了,我看看要更新的資料,總共有32w+條,這樣更新下來大概需要24h+,也就是1天還要多,額~哭了,想想肯定是**出問題了。

發現問題

首先我想到的是是不是因為只有乙個程序在更新,導致很慢,我啟動了5個程序,將id分段了,就像下面這樣

./update_url.sh 0 10000 &

./update_url.sh 10000 20001 &

./update_url.sh 20001 30001 &

./update_url.sh 30002 40002 &

./update_url.sh 40003 50003 &

執行之後發現還是那樣,速度沒有提公升多少,還是每秒鐘更新3~5個左右,想想也是啊,時間不可能花費在插入資料之前的那些步驟(匹配、組裝sql語句、。。。),應該是插入的時候有問題

再來看看我的sql語句select id,url from funkspeed where id>=101 and id<=200;,這裡,試著在命令列執行了下,結果如下

mysql> select id,url from funkspeed where id>=0 and id<=200;

empty set (0.18 sec)

竟然花了0.18秒,這個時候我猜恍然大悟,聯合索引我沒有使用到,聯合索引生效的條件是——必須要有左邊的字段,用explain驗證下,果然是這樣:

mysql> explain id,url from funkspeed where id>=0 and id<=200;

| table | type | possible_keys | key | key_len | ref | rows | extra |

| funkspeed | all | null | null | null | null | 324746 | using where |

1 row in set (0.00 sec)

然後使用聯合索引:

mysql> select uin,id from funkspeed where uin=10023 and id=162;

| uin | id |

| 10023 | 162 |

1 row in set (0.00 sec)

mysql> explain select uin,id from funkspeed where uin=10023 and id=162;

| table | type | possible_keys | key | key_len | ref | rows | extra |

| funkspeed | ref | uin_id | uin_id | 12 | const,const | 4 | using index |

1 row in set (0.00 sec)

可以看到幾乎是秒查,這個時候基本可以斷定問題是出現在索引這個地方了

我select的時候次數比較少,每兩個select之間id相差10000,所以這裡可以忽略掉,而且這裡沒辦法優化,除非在id上面新增索引。

問題發生在update ****speed set type=[type],typeid=[typeid] where id=[id],這裡在更新的時候也是會用到查詢的,我的mysql版本是5.5,不能explain update,不然肯定可以驗證我所說的,這裡要更新32w+條資料,每條資料都會去更新,每條資料0.2s左右,這太嚇人了~~

解決問題

問題找到了,解決起來就容易多了~~

select的時候加了乙個欄位uin,改為下面這樣select uin,id,url from funkspeed where id>=101 and id<=200;,然後更新的時候使用update ****speed set type=[type],typeid=[typeid] where uin=[uin] id=[id],這樣一來索引就是用上了。

三下五除二改好了**,試著啟動了乙個程序,看看效果如何,果然,效果提公升的不是一點點,平均30+次/s,這樣大概3個小時左右就可以完成所有的更新了。

越努力,越幸運!越幸運,越努力!

做上ceo不是夢

贏取白富美不是夢

屌絲逆襲不是夢

就是現在!!加油

mysql安裝一次 記一次mysql安裝

mysql 分為安裝版和壓縮版 2.安裝 2.1 解壓得到 mysql 8.0.15 winx64 資料夾 2.2 在mysql 8.0.15 winx64 資料夾下,新建配置檔案my.ini,內容 如下 mysqld 設定3306埠 port 3306 設定mysql的安裝目錄,這裡是唯一你需要改...

記一次ORACLE查詢更新

結轉專案表.結轉收入 結轉專案表.結轉金額 1 稅率表.稅率 where條件是表名中 表名.id 在查詢結果中存在對應的值才能執行更新語句 update 表名 set 表名.欄位名 select 查詢結果.欄位名 from 查詢語句 查詢結果名 where 表名.id 查詢結果.sys id upd...

記一次mysql宕機

e warning pdo prepare mysql server has gone away pdo prepare mysql server has gone awayilluminate database queryexception sqlstate hy000 2002 connecti...