设为首页 收藏本站
查看: 1103|回复: 0

[经验分享] MySQL分表优化试验

[复制链接]

尚未签到

发表于 2018-9-27 06:03:50 | 显示全部楼层 |阅读模式
我们的项目中有好多不等于的情况。今天写这篇文章简单的分析一下怎么个优化法。  这里的分表逻辑是根据t_group表的user_name组的个数来分的。
  因为这种情况单独user_name字段上的索引就属于烂索引。起不了啥名明显的效果。
  1、试验PROCEDURE.
  DELIMITER $$
  DROP PROCEDURE `t_girl`.`sp_split_table`$$
  CREATE  PROCEDURE `t_girl`.`sp_split_table`()
  BEGIN
  declare done int default 0;
  declare v_user_name varchar(20) default '';
  declare v_table_name varchar(64) default '';
  -- Get all users' name.
  declare cur1 cursor for select user_name from t_group group by user_name;
  -- Deal with error or warnings.
  declare continue handler for 1329 set done = 1;
  -- Open cursor.
  open cur1;
  while done  1
  do
  fetch cur1 into v_user_name;
  if not done then
  -- Get table name.
  set v_table_name = concat('t_group_',v_user_name);
  -- Create new extra table.
  set @stmt = concat('create table ',v_table_name,' like t_group');
  prepare s1 from @stmt;
  execute s1;
  drop prepare s1;
  -- Load data into it.
  set @stmt = concat('insert into ',v_table_name,' select * from t_group where user_name = ''',v_user_name,'''');
  prepare s1 from @stmt;
  execute s1;
  drop prepare s1;
  end if;
  end while;
  -- Close cursor.
  close cur1;
  -- Free variable from memory.
  set @stmt = NULL;
  END$$
  DELIMITER ;
  2、试验表。
  我们用一个有一千万条记录的表来做测试。
  mysql> select count(*) from t_group;
  +----------+
  | count(*) |
  +----------+
  | 10388608 |
  +----------+
  1 row in set (0.00 sec)
  表结构。
  mysql> desc t_group;
  +-------------+------------------+------+-----+-------------------+----------------+
  | Field       | Type             | Null | Key | Default           | Extra          |
  +-------------+------------------+------+-----+-------------------+----------------+

  |>  | money       | decimal(10,2)    | NO   |     |                   |                |
  | user_name   | varchar(20)      | NO   | MUL |                   |                |
  | create_time | timestamp        | NO   |     | CURRENT_TIMESTAMP |                |
  +-------------+------------------+------+-----+-------------------+----------------+
  4 rows in set (0.00 sec)
  索引情况。
  mysql> show index from t_group;
  +---------+------------+------------------+--------------+-------------+-----------+-------------+----------+--------+------+------------+---------+
  |Table   | Non_unique | Key_name         | Seq_in_index | Column_name |Collation | Cardinality | Sub_part | Packed | Null | Index_type |Comment |
  +---------+------------+------------------+--------------+-------------+-----------+-------------+----------+--------+------+------------+---------+

  |t_group |          0 | PRIMARY          |            1 |>
  | t_group |          1 |>
  | t_group |          1 |>  | t_group |          1 |idx_combination1 |            2 | money       | A         |        3776|     NULL | NULL   |      | BTREE      |         |
  +---------+------------+------------------+--------------+-------------+-----------+-------------+----------+--------+------+------------+---------+
  4 rows in set (0.00 sec)
  PS:
  idx_combination1 这个索引是必须的,因为要对user_name来GROUP BY。此时属于松散索引扫描!当然完了后你可以干掉她。
  idx_user_name 这个索引是为了加快单独执行constant这种类型的查询。
  我们要根据用户名来分表。
  mysql> select user_name from t_group where 1 group by user_name;
  +-----------+
  | user_name |
  +-----------+
  | david     |
  | leo       |
  | livia     |
  | lucy      |
  | sarah     |
  | simon     |
  | sony      |
  | sunny     |
  +-----------+
  8 rows in set (0.00 sec)
  所以结果表应该是这样的。
  mysql> show tables like 't_group_%';
  +------------------------------+
  | Tables_in_t_girl (t_group_%) |
  +------------------------------+
  | t_group_david                |
  | t_group_leo                  |
  | t_group_livia                |
  | t_group_lucy                 |
  | t_group_sarah                |
  | t_group_simon                |
  | t_group_sony                 |
  | t_group_sunny                |
  +------------------------------+
  8 rows in set (0.00 sec)
  3、对比结果。
  mysql> select count(*) from t_group where user_name = 'david';
  +----------+
  | count(*) |
  +----------+
  |  1298576 |
  +----------+
  1 row in set (1.71 sec)
  执行了将近2秒。
  mysql> select count(*) from t_group_david;
  +----------+
  | count(*) |
  +----------+
  |  1298576 |
  +----------+
  1 row in set (0.00 sec)
  几乎是瞬间的。
  mysql> select count(*) from t_group where user_name  'david';
  +----------+
  | count(*) |
  +----------+
  |  9090032 |
  +----------+
  1 row in set (9.26 sec)
  执行了将近10秒,可以想象,这个是实际的项目中是不能忍受的。
  mysql> select (select count(*) from t_group) - (select count(*) from t_group_david) as total;
  +---------+
  | total   |
  +---------+
  | 9090032 |
  +---------+
  1 row in set (0.00 sec)
  几乎是瞬间的。
  我们来看看聚集函数。
  对于原表的操作。
  mysql> select min(money),max(money) from t_group where user_name = 'david';
  +------------+------------+
  | min(money) | max(money) |
  +------------+------------+
  |      -6.41 |     500.59 |
  +------------+------------+
  1 row in set (0.00 sec)
  最小,最大值都是FULL INDEX SCAN。所以是瞬间的。
  mysql> select sum(money),avg(money) from t_group where user_name = 'david';
  +--------------+------------+
  | sum(money)   | avg(money) |
  +--------------+------------+
  | 319992383.84 | 246.417910 |
  +--------------+------------+
  1 row in set (2.15 sec)
  其他聚集函数的结果就不是FULL INDEX SCAN了。耗时2.15秒。
  对于小表的操作。
  mysql> select min(money),max(money) from t_group_david;
  +------------+------------+
  | min(money) | max(money) |
  +------------+------------+
  |      -6.41 |     500.59 |
  +------------+------------+
  1 row in set (1.50 sec)
  最大最小值完全是FULL TABLE SCAN,耗时1.50秒,不划算。以此看来。
  mysql> select sum(money),avg(money) from t_group_david;
  +--------------+------------+
  | sum(money)   | avg(money) |
  +--------------+------------+
  | 319992383.84 | 246.417910 |
  +--------------+------------+
  1 row in set (1.68 sec)
  取得这两个结果也是花了快2秒,快了一点。
  我们来看看这个小表的结构。
  mysql> desc t_group_david;
  +-------------+------------------+------+-----+-------------------+----------------+
  | Field       | Type             | Null | Key | Default           | Extra          |
  +-------------+------------------+------+-----+-------------------+----------------+

  |>  | money       | decimal(10,2)    | NO   |     |                   |                |
  | user_name   | varchar(20)      | NO   | MUL |                   |                |
  | create_time | timestamp        | NO   |     | CURRENT_TIMESTAMP |                |
  +-------------+------------------+------+-----+-------------------+----------------+
  4 rows in set (0.00 sec)
  明显的user_name属性是多余的。那么就干掉它。

  mysql>>  Query OK, 1298576 rows affected (7.58 sec)
  Records: 1298576  Duplicates: 0  Warnings: 0
  现在来重新对小表运行查询
  mysql> select min(money),max(money) from t_group_david;
  +------------+------------+
  | min(money) | max(money) |
  +------------+------------+
  |      -6.41 |     500.59 |
  +------------+------------+
  1 row in set (0.00 sec)
  此时是瞬间的。
  mysql> select sum(money),avg(money) from t_group_david;
  +--------------+------------+
  | sum(money)   | avg(money) |
  +--------------+------------+
  | 319992383.84 | 246.417910 |
  +--------------+------------+
  1 row in set (0.94 sec)
  这次算是控制在一秒以内了。
  mysql> Aborted
  小总结一下:分出的小表的属性尽量越少越好。大胆的去干吧。


运维网声明 1、欢迎大家加入本站运维交流群:群②:261659950 群⑤:202807635 群⑦870801961 群⑧679858003
2、本站所有主题由该帖子作者发表,该帖子作者与运维网享有帖子相关版权
3、所有作品的著作权均归原作者享有,请您和我们一样尊重他人的著作权等合法权益。如果您对作品感到满意,请购买正版
4、禁止制作、复制、发布和传播具有反动、淫秽、色情、暴力、凶杀等内容的信息,一经发现立即删除。若您因此触犯法律,一切后果自负,我们对此不承担任何责任
5、所有资源均系网友上传或者通过网络收集,我们仅提供一个展示、介绍、观摩学习的平台,我们不对其内容的准确性、可靠性、正当性、安全性、合法性等负责,亦不承担任何法律责任
6、所有作品仅供您个人学习、研究或欣赏,不得用于商业或者其他用途,否则,一切后果均由您自己承担,我们对此不承担任何法律责任
7、如涉及侵犯版权等问题,请您及时通知我们,我们将立即采取措施予以解决
8、联系人Email:admin@iyunv.com 网址:www.yunweiku.com

所有资源均系网友上传或者通过网络收集,我们仅提供一个展示、介绍、观摩学习的平台,我们不对其承担任何法律责任,如涉及侵犯版权等问题,请您及时通知我们,我们将立即处理,联系人Email:kefu@iyunv.com,QQ:1061981298 本贴地址:https://www.yunweiku.com/thread-602456-1-1.html 上篇帖子: Mysql热备xtrabackup的使用 下篇帖子: Heartbeat+Drbd+MySQL 安装部署
您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

扫码加入运维网微信交流群X

扫码加入运维网微信交流群

扫描二维码加入运维网微信交流群,最新一手资源尽在官方微信交流群!快快加入我们吧...

扫描微信二维码查看详情

客服E-mail:kefu@iyunv.com 客服QQ:1061981298


QQ群⑦:运维网交流群⑦ QQ群⑧:运维网交流群⑧ k8s群:运维网kubernetes交流群


提醒:禁止发布任何违反国家法律、法规的言论与图片等内容;本站内容均来自个人观点与网络等信息,非本站认同之观点.


本站大部分资源是网友从网上搜集分享而来,其版权均归原作者及其网站所有,我们尊重他人的合法权益,如有内容侵犯您的合法权益,请及时与我们联系进行核实删除!



合作伙伴: 青云cloud

快速回复 返回顶部 返回列表