- 论坛徽章:
- 0
|
两台配置相同的服务器(A服务器和B服务器),跑的业务也完全相同,表结构全完相同,表中的索引也完全相同,唯一不同的就是一个表中的数据多,一个少,A
服务器执行相同的查询,扫描的数据行数为893559行,B服务器扫描的行数据为55行.请高手帮分析一下,谢谢!
A服务器:
mysql> select count(*) from CashFlow;
+----------+
| count(*) |
+----------+
| 893671 |
+----------+
1 row in set (0.20 sec)
mysql> show index from CashFlow;
+----------+------------+---------------------+--------------+-------------+-----------+-------------+----------+--------+------+------------+---------+
| Table | Non_unique | Key_name | Seq_in_index | Column_name | Collation | Cardinality | Sub_part | Packed | Null | Index_type | Comment |
+----------+------------+---------------------+--------------+-------------+-----------+-------------+----------+--------+------+------------+---------+
| CashFlow | 0 | PRIMARY | 1 | id | A | 893559 | NULL | NULL | | BTREE | |
| CashFlow | 1 | CashFlow_createDttm | 1 | createDttm | A | 893559 | NULL | NULL | | BTREE | |
| CashFlow | 1 | CashFlow_UserId | 1 | userId | A | 202 | NULL | NULL | | BTREE | |
+----------+------------+---------------------+--------------+-------------+-----------+-------------+----------+--------+------+------------+---------+
3 rows in set (0.01 sec)
mysql> explain SELECT sum(c.num) FROM CashFlow c,Account a,User u WHERE c.type = 'EDUCATE' and (c.createDttm between '2010-10-18 00:00:00' and '2010-10-18 23:59:59') and u.userId = c.userId and a.accId = u.accId and a.partnerId = '120010';
+----+-------------+-------+--------+-------------------------------------+---------+---------+----------------+--------+-------------+
| id | select_type | table | type | possible_keys | key | key_len | ref | rows | Extra |
+----+-------------+-------+--------+-------------------------------------+---------+---------+----------------+--------+-------------+
| 1 | SIMPLE | c | ALL | CashFlow_createDttm,CashFlow_UserId | NULL | NULL | NULL | 893559 | Using where |
| 1 | SIMPLE | u | eq_ref | PRIMARY,User_accId | PRIMARY | 4 | sword.c.userId | 1 | |
| 1 | SIMPLE | a | eq_ref | PRIMARY | PRIMARY | 4 | sword.u.accId | 1 | Using where |
+----+-------------+-------+--------+-------------------------------------+---------+---------+----------------+--------+-------------+
3 rows in set (0.00 sec)
B服务器:
mysql> select count(*) from CashFlow;
+----------+
| count(*) |
+----------+
| 293854 |
+----------+
1 row in set (0.06 sec)
mysql> show index from CashFlow;
+----------+------------+---------------------+--------------+-------------+-----------+-------------+----------+--------+------+------------+---------+
| Table | Non_unique | Key_name | Seq_in_index | Column_name | Collation | Cardinality | Sub_part | Packed | Null | Index_type | Comment |
+----------+------------+---------------------+--------------+-------------+-----------+-------------+----------+--------+------+------------+---------+
| CashFlow | 0 | PRIMARY | 1 | id | A | 298077 | NULL | NULL | | BTREE | |
| CashFlow | 1 | CashFlow_createDttm | 1 | createDttm | A | 298077 | NULL | NULL | | BTREE | |
| CashFlow | 1 | CashFlow_UserId | 1 | userId | A | 4319 | NULL | NULL | | BTREE | |
+----------+------------+---------------------+--------------+-------------+-----------+-------------+----------+--------+------+------------+---------+
3 rows in set (0.50 sec)
mysql> explain SELECT sum(c.num) FROM CashFlow c,Account a,User u WHERE c.type = 'EDUCATE' and (c.createDttm between '2010-10-18 00:00:00' and '2010-10-18 23:59:59') and u.userId = c.userId and a.accId = u.accId and a.partnerId = '120011';
+----+-------------+-------+--------+-------------------------------------+---------------------+---------+----------------+------+-------------+
| id | select_type | table | type | possible_keys | key | key_len | ref | rows | Extra |
+----+-------------+-------+--------+-------------------------------------+---------------------+---------+----------------+------+-------------+
| 1 | SIMPLE | c | range | CashFlow_createDttm,CashFlow_UserId | CashFlow_createDttm | 4 | NULL | 55 | Using where |
| 1 | SIMPLE | u | eq_ref | PRIMARY,User_accId | PRIMARY | 4 | sword.c.userId | 1 | |
| 1 | SIMPLE | a | eq_ref | PRIMARY | PRIMARY | 4 | sword.u.accId | 1 | Using where |
+----+-------------+-------+--------+-------------------------------------+---------------------+---------+----------------+------+-------------+
3 rows in set (0.00 sec) |
|