MySQL分表优化试验

2016-02-19 19:20 1 1 收藏

今天图老师小编要跟大家分享MySQL分表优化试验,精心挑选的过程简单易学,喜欢的朋友一起来学习吧!

【 tulaoshi.com - 编程语言 】

  我们的项目中有好多不等于的情况。今天写这篇文章简单的分析一下怎么个优化法。

  这里的分表逻辑是根据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     |
+-------------+------------------+------+-----+-------------------+----------------+
| id     | int(10) unsigned | NO  | PRI | NULL       | auto_increment |
| money    | decimal(10,2)  | NO  |   |          |        |
| user_name  | varchar(20)   | NO  | MUL |          |        |
| create_time | timestamp    | NO  |   | CURRENT_TIMESTAMP |        |
+-------------+------------------+------+-----+-------------------+----------------+
4 rows in set (0.00 sec)

(本文来源于图老师网站,更多请访问https://www.tulaoshi.com/bianchengyuyan/)

  索引情况。

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 | id     |A     |  10388608 |   NULL | NULL  |   | BTREE   |     |
| t_group |     1 | idx_user_name  |      1 | user_name  | A     |      8 |   NULL | NULL  |   |BTREE   |     |
| t_group |     1 | idx_combination1|      1 | user_name  | A     |      8 |   NULL |NULL  |   | BTREE   |     |
| 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)

(本文来源于图老师网站,更多请访问https://www.tulaoshi.com/bianchengyuyan/)

其他聚集函数的结果就不是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     |
+-------------+------------------+------+-----+-------------------+----------------+
| id     | int(10) unsigned | NO  | PRI | NULL       | auto_increment |
| 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 alter table t_group_david drop user_name;
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

  小总结一下:分出的小表的属性尽量越少越好。大胆的去干吧

来源:https://www.tulaoshi.com/n/20160219/1620755.html

延伸阅读
提高MySQL 查询效率的三个技巧小结 MySQL由于它本身的小巧和操作的高效, 在数据库应用中越来越多的被采用.我在开发一个P2P应用的时候曾经使用MySQL来保存P2P节点,由于P2P的应用中,结点数动辄上万个,而且节点变化频繁,因此一定要保持查询和插入的高效.以下是我在使用过程中做的提高效率的三个有效的尝试. l    ...
标签: MySQL mysql数据库
7.4优化数据库结构 7.4.1设计选择 MySQL将记录数据和索引数据分别存放在不同的文件里。其他很多(几乎所有)数据库都将这记录和索引数据存在同一个文件中。我们相信MySQL的选择对于现在更大范围的系统更合适。 另一个存储记录数据的方法是将每个字段的信息保存在独立的区域中(例如 SDBM 和Focus)。这当每个查询都要访问不只一个字段的...
标签: MySQL mysql数据库
7 MySQL 优化 数据库优化是一项很复杂的工作,因为这最终需要对系统优化的很好理解才行。尽管对系统或应用系统的了解不多的情况下优化效果还不错,但是如果想优化的效果更好,那么就需要对它了解更多才行。 本章主要讲解了几种优化MySQL的方法,并且给出了例子。记着,总有各种办法能让系统运行的更快,当然了,这需要更多的努力。 7....
标签: MySQL mysql数据库
  where优化主要是在SELECT中,因为他们最主要是在那里使用,但是同样的优化也可被用于DELETE和UPDATE语句。 但请注意,下面的优化并不是完全的。MYSQL实施了许多优化,但我没时间全部测试. MySQL的一些优化列在下面: 删除不必要的括号:   ((a AND b) AND c OR (((a AND b) AND (c AND d)))) - (a AND b AND c) OR (a ...
myisam_max_[extra]_sort_file_size足够大 delay_key_write减少io,提高写入性能 bulk_insert_buffer_size concurrent_insert 设置为2 read_rnd_buffer_size random scan 使用 read_buffer_size 顺序扫描表使用 key cache 的三种方式 key cache 预加载 SET GLOBAL hot_cache.key_buffer_size=16m SET BLOBAL cold_cache.key_bu...

经验教程

302

收藏

27
微博分享 QQ分享 QQ空间 手机页面 收藏网站 回到头部