mysql的partition_mysql Partition(分区)初探

的水平切分.

mysql是具有MERGE这种引擎的,就是把一些结构相同的MyIASM表作为一个表使用,但是我觉得 MERGE不如partition实用,

因为MERGE会在所有的底层表上查询,而partition只在相应的分区上查询.

建立了两个表,分别为分区和未分区的,分区表按年进行分区.

Sql代码 icon_copy.gificon_star.png

spinner.gif

CREATE TABLE `20130117date_par` (

`content` varchar(20) NOT NULL,

`create_time` datetime NOT NULL,

KEY `20130117date_idx_date` (`create_time`)

) ENGINE=InnoDB DEFAULT CHARSET=utf8

PARTITION BY RANGE (YEAR(create_time))

(PARTITION p2009 VALUES LESS THAN (2010),

PARTITION p2010 VALUES LESS THAN (2011),

PARTITION p2011 VALUES LESS THAN (2012),

PARTITION p2012 VALUES LESS THAN (2013),

PARTITION p2013 VALUES LESS THAN (2014))

CREATE TABLE `20130117date` (

`content` varchar(20) NOT NULL,

`create_time` datetime NOT NULL,

KEY `20130117date_idx_date` (`create_time`)

) ENGINE=InnoDB

CREATE TABLE `20130117date_par` (

`content` varchar(20) NOT NULL,

`create_time` datetime NOT NULL,

KEY `20130117date_idx_date` (`create_time`)

) ENGINE=InnoDB DEFAULT CHARSET=utf8

PARTITION BY RANGE (YEAR(create_time))

(PARTITION p2009 VALUES LESS THAN (2010),

PARTITION p2010 VALUES LESS THAN (2011),

PARTITION p2011 VALUES LESS THAN (2012),

PARTITION p2012 VALUES LESS THAN (2013),

PARTITION p2013 VALUES LESS THAN (2014))

CREATE TABLE `20130117date` (

`content` varchar(20) NOT NULL,

`create_time` datetime NOT NULL,

KEY `20130117date_idx_date` (`create_time`)

) ENGINE=InnoDB

用sp向分区表和普通表各插入了90w条随机数据.

用mysqlslap进行下测试

不用分区表

Sql代码 icon_copy.gificon_star.png

spinner.gif

select SQL_NO_CACHE * from 20130117date

where create_time BETWEEN '2013-01-01' and '2013-01-02';

select SQL_NO_CACHE * from 20130117date

where create_time BETWEEN '2012-12-25' and '2013-01-05';

select SQL_NO_CACHE * from 20130117date

where create_time BETWEEN '2013-01-01' and '2013-01-02';

select SQL_NO_CACHE * from 20130117date

where create_time BETWEEN '2012-12-25' and '2013-01-05';

引用

Benchmark

Average number of seconds to run all queries: 0.881 seconds

Minimum number of seconds to run all queries: 0.062 seconds

Maximum number of seconds to run all queries: 3.844 seconds

Number of clients running queries: 1

Average number of queries per client: 2

Benchmark

Average number of seconds to run all queries: 0.703 seconds

Minimum number of seconds to run all queries: 0.062 seconds

Maximum number of seconds to run all queries: 1.922 seconds

Number of clients running queries: 1

Average number of queries per client: 2

Benchmark

Average number of seconds to run all queries: 1.250 seconds

Minimum number of seconds to run all queries: 0.109 seconds

Maximum number of seconds to run all queries: 4.032 seconds

Number of clients running queries: 1

Average number of queries per client: 2

用分区表

Sql代码 icon_copy.gificon_star.png

spinner.gif

select SQL_NO_CACHE * from 20130117date_par

where create_time BETWEEN '2013-01-01' and '2013-01-02';

select SQL_NO_CACHE * from 20130117date_par

where create_time BETWEEN '2012-12-25' and '2013-01-05';

select SQL_NO_CACHE * from 20130117date_par

where create_time BETWEEN '2013-01-01' and '2013-01-02';

select SQL_NO_CACHE * from 20130117date_par

where create_time BETWEEN '2012-12-25' and '2013-01-05';

引用

Benchmark

Average number of seconds to run all queries: 0.068 seconds

Minimum number of seconds to run all queries: 0.047 seconds

Maximum number of seconds to run all queries: 0.110 seconds

Number of clients running queries: 1

Average number of queries per client: 2

Benchmark

Average number of seconds to run all queries: 0.250 seconds

Minimum number of seconds to run all queries: 0.031 seconds

Maximum number of seconds to run all queries: 1.078 seconds

Number of clients running queries: 1

Average number of queries per client: 2

Benchmark

Average number of seconds to run all queries: 0.046 seconds

Minimum number of seconds to run all queries: 0.046 seconds

Maximum number of seconds to run all queries: 0.047 seconds

Number of clients running queries: 1

Average number of queries per client: 2

看来性能还是有一定的提升的.

执行

Sql代码 icon_copy.gificon_star.png

spinner.gif

explain PARTITIONS select * from 20130117date_par

where create_time BETWEEN '2012-01-01' and '2012-01-02';

explain PARTITIONS select * from 20130117date_par

where create_time BETWEEN '2012-01-01' and '2012-01-02';

可以看出这个query只扫描了p2012这个分区.

而且分区表的好处在于维护比较方便.比如2009年的数据不需要了,分区表的方法为

Sql代码 icon_copy.gificon_star.png

spinner.gif

alter table 20130117date_par drop PARTITION p2009

alter table 20130117date_par drop PARTITION p2009

不到1s就行了

普通表为

Sql代码 icon_copy.gificon_star.png

spinner.gif

delete from 20130117date

where create_time BETWEEN '2009-01-01' and '2010-01-01'

delete from 20130117date

where create_time BETWEEN '2009-01-01' and '2010-01-01'

用了10.25s左右

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值