国产99久久精品_欧美日本韩国一区二区_激情小说综合网_欧美一级二级视频_午夜av电影_日本久久精品视频

最新文章專題視頻專題問答1問答10問答100問答1000問答2000關(guān)鍵字專題1關(guān)鍵字專題50關(guān)鍵字專題500關(guān)鍵字專題1500TAG最新視頻文章推薦1 推薦3 推薦5 推薦7 推薦9 推薦11 推薦13 推薦15 推薦17 推薦19 推薦21 推薦23 推薦25 推薦27 推薦29 推薦31 推薦33 推薦35 推薦37視頻文章20視頻文章30視頻文章40視頻文章50視頻文章60 視頻文章70視頻文章80視頻文章90視頻文章100視頻文章120視頻文章140 視頻2關(guān)鍵字專題關(guān)鍵字專題tag2tag3文章專題文章專題2文章索引1文章索引2文章索引3文章索引4文章索引5123456789101112131415文章專題3
問答文章1 問答文章501 問答文章1001 問答文章1501 問答文章2001 問答文章2501 問答文章3001 問答文章3501 問答文章4001 問答文章4501 問答文章5001 問答文章5501 問答文章6001 問答文章6501 問答文章7001 問答文章7501 問答文章8001 問答文章8501 問答文章9001 問答文章9501
當(dāng)前位置: 首頁 - 科技 - 知識(shí)百科 - 正文

WhyALTERTABLErunsfasteronPerconaServer5.5vs.MySQL_MySQL

來源:懂視網(wǎng) 責(zé)編:小采 時(shí)間:2020-11-09 19:17:40
文檔

WhyALTERTABLErunsfasteronPerconaServer5.5vs.MySQL_MySQL

WhyALTERTABLErunsfasteronPerconaServer5.5vs.MySQL_MySQL:Some of us Perconians are atOpenStack summitthis week in Atlanta.Matt Griffin, our director of product management,tweetedabout the turbo-hipster CI talk about their experience of ALTER TABLEs running faster on Percona Server. Oracles Morga
推薦度:
導(dǎo)讀WhyALTERTABLErunsfasteronPerconaServer5.5vs.MySQL_MySQL:Some of us Perconians are atOpenStack summitthis week in Atlanta.Matt Griffin, our director of product management,tweetedabout the turbo-hipster CI talk about their experience of ALTER TABLEs running faster on Percona Server. Oracles Morga
OpenStack 2014Some of us Perconians are atOpenStack summitthis week in Atlanta.Matt Griffin, our director of product management,tweetedabout the turbo-hipster CI talk about their experience of ALTER TABLEs running faster on Percona Server. Oracle’s Morgan Tockerthentweeted in response, asking why this was the case. I decided that the simplest way to answer that was here in this post.

The reason for this is the expand_fast_index_creation feature of Percona Server. I did a quick schema change on MySQL 5.5 and Percona Server 5.5 to demonstrate this(in the talk, the speaker mentioned that these versions were used).

The schema modifications in the talk could fall in 2 categories, the ones that could use fast index creation and the ones that could not.

I did the following tests on my laptop, on a sysbench tale with 300k records.

Vanilla MySQL 5.5:

mysql> alter table sbtest1 add index idx_c(c);Query OK, 0 rows affected (4.37 sec)

mysql>altertablesbtest1addindexidx_c(c);

QueryOK,0rowsaffected(4.37sec)

Percona Server 5.5:

mysql> alter table sbtest1 add index idx_c(c);Query OK, 0 rows affected (3.90 sec)

mysql>altertablesbtest1addindexidx_c(c);

QueryOK,0rowsaffected(3.90sec)

We know that this used fast index creation from the 0 rows affected. In this case, there is nor substantial difference between the 2 servers, also probably my laptop with CPU frewquency scaling doesn’t have the most consistent performance in the world.

For the second schema change, I added a column which copies the table.

Vanilla MySQL 5.5:

mysql> alter table sbtest1 add column d int default 0;Query OK, 300000 rows affected (37.05 sec)Records: 300000Duplicates: 0Warnings: 0

mysql>altertablesbtest1addcolumndintdefault0;

QueryOK,300000rowsaffected(37.05sec)

Records:300000 Duplicates:0 Warnings:0

Percona Server 5.5:

mysql> alter table sbtest1 add column d int default 0;Query OK, 300000 rows affected (9.51 sec)Records: 300000Duplicates: 0Warnings: 0

mysql>altertablesbtest1addcolumndintdefault0;

QueryOK,300000rowsaffected(9.51sec)

Records:300000 Duplicates:0 Warnings:0

The reason for this speed difference is that in case of Percona Server, for the table copy, the table is created only with a primary key, and the secondary indexes are built at the end of the process (rather than on the fly). For more details, checkAlexey’s blog poston this topic.

This can be tuned further, by tuning innodb_merge_sort_block_size (in Percona Server 5.6, this is replaced by innodb_sort_buffer_size).

mysql> select @@innodb_merge_sort_block_size/1024/1024;+------------------------------------------+| @@innodb_merge_sort_block_size/1024/1024 |+------------------------------------------+| 1.00000000 |+------------------------------------------+1 row in set (0.00 sec)mysql> set innodb_merge_sort_block_size=8*1024*1024;Query OK, 0 rows affected (0.00 sec)mysql> alter table sbtest1 add column d int default 0;Query OK, 300000 rows affected (8.61 sec)Records: 300000Duplicates: 0Warnings: 0

mysql>select@@innodb_merge_sort_block_size/1024/1024;

+------------------------------------------+

|@@innodb_merge_sort_block_size/1024/1024|

+------------------------------------------+

| 1.00000000|

+------------------------------------------+

1rowinset(0.00sec)

mysql>setinnodb_merge_sort_block_size=8*1024*1024;

QueryOK,0rowsaffected(0.00sec)

mysql>altertablesbtest1addcolumndintdefault0;

QueryOK,300000rowsaffected(8.61sec)

Records:300000 Duplicates:0 Warnings:0

So, in order to be accurate, schema changes are faster in Percona Server if they are table copies and if the tables have secondary indexes.

聲明:本網(wǎng)頁內(nèi)容旨在傳播知識(shí),若有侵權(quán)等問題請(qǐng)及時(shí)與本網(wǎng)聯(lián)系,我們將在第一時(shí)間刪除處理。TEL:177 7030 7066 E-MAIL:11247931@qq.com

文檔

WhyALTERTABLErunsfasteronPerconaServer5.5vs.MySQL_MySQL

WhyALTERTABLErunsfasteronPerconaServer5.5vs.MySQL_MySQL:Some of us Perconians are atOpenStack summitthis week in Atlanta.Matt Griffin, our director of product management,tweetedabout the turbo-hipster CI talk about their experience of ALTER TABLEs running faster on Percona Server. Oracles Morga
推薦度:
標(biāo)簽: 5.5 mysql run
  • 熱門焦點(diǎn)

最新推薦

猜你喜歡

熱門推薦

專題
Top
主站蜘蛛池模板: 国产精彩视频 | 欧美性一区二区三区五区 | 大香伊人久久 | 欧美激情亚洲一区中文字幕 | 欧美精品aaa久久久影院 | 国内精品免费 | 极品美女户外勾搭无套 | 成人国产一区二区 | 五十路在线播放 | 91精品国产91久久综合 | 波多野结衣网站 | 久久91精品国产91久久户 | 国产a国产片| 亚洲欧美专区 | 欧美雌雄双性人交xxxx | 国产一区二区不卡免费观在线 | 一区二区在线观看高清 | 美女视频黄a视频免费全过程在线 | 波多野结衣系列在线观看 | 在线播放一区二区三区 | 免费在线一级毛片 | 美女视频黄a视频全免费应用 | 欧美国产亚洲一区二区三区 | 91成人午夜性a一级毛片 | 最新国产在线播放 | 在线播放真实国产乱子伦 | 国产精品网站在线进入 | 伊人久久综合成人网小说 | 不卡一级aaa全黄毛片 | 国产成人久久精品二区三区 | 欧美国产精品va在线观看 | 国产精选在线观看 | 亚洲综合导航 | 久久久亚洲欧美综合 | 欧美在线一 | 国内一级野外a一级毛片 | 亚洲视频在线观看免费 | 国产毛片一区二区三区 | 亚洲另类中文字幕 | 亲子交尾五十路 | 成人精品一区二区三区 |