zoukankan      html  css  js  c++  java
  • 0316 【案例】MySQL count操作优化案例一则

     

    转自http://blog.itpub.net/22664653/viewspace-1791124/ 

    一 背景
     某业务的数据库定期报 thread_runing 飙高,通定位发现一个慢查询sql导致会话堆积。执行sql 耗时如下 

    1. root@db 05:32:05>select count(item_id) from xxxtable where selid = 345705650 and end_time > now();
    2. +----------------+
    3. | count(item_id) |
    4. +----------------+
    5. | 2247052 |
    6. +----------------+
    7. 1 row in set (4.65 sec)
    二 分析  
    慢查询表结构如下 
    1. root@db >show create table xxxtable G
    2. *************************** 1. row ***************************
    3.        Table: uac_shop_item_promotion_0091
    4. Create Table: CREATE TABLE `uac_shop_item_promotion_0091` (
    5.   `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT COMMENT '主键',
    6.   `gmt_modified` datetime NOT NULL COMMENT '修改时间',
    7.   `selid` bigint(20) NOT NULL COMMENT '分表字段',
    8.   `end_time` datetime NOT NULL COMMENT '活动结束时间',
    9.   `item_id` bigint(20) NOT NULL COMMENT '商品id',
    10.   PRIMARY KEY (`id`),
    11.   UNIQUE KEY `idx_uq_item` (`item_id`),
    12.   KEY `idx_deller_id_end_time` (`selid`,`end_time`),
    13.   KEY `idx_deller_id_start_time` (`selid`,`start_time`),
    14.   KEY `idx_seller_item_start` (`selid`,`start_time`,`item_id`)
    15. ) ENGINE=InnoDB AUTO_INCREMENT=42132149 DEFAULT CHARSET=gbk COMMENT='索引表'
    16. 1 row in set (0.00 sec)
    很明显出现问题的sql由于使用了count(item_id) ,而item_id字段并没有和 selid 和end_time 构成有效索引  故该sql 没有合理的使用索引 。查看其直系计划
    1. root@db >explain select count(item_id) from xxxtable 
    2.         >where selid = 345705650 and end_time > now() G
    3. *************************** 1. row ***************************
    4.            id: 1
    5.   select_type: SIMPLE
    6.         table: xxxtable
    7.          type: ref
    8. possible_keys: idx_deller_id_end_time,idx_deller_id_start_time,idx_seller_item_start
    9.           key: idx_deller_id_end_time
    10.       key_len: 8 
    11.           ref: const
    12.          rows: 1726757
    13.         Extra: Using where
    14. 1 row in set (0.00 sec)
    从key_len=8 和Extra: Using where 可以看出MySQL没有完全利用到idx_deller_id_end_time组合索引而是利用到了 selid字段作为过滤条件回表查询。
    count(item_id)的意思是符合where条件的结果集中item_id非空集合的总和。
    三 如何优化
    根据该sql的业务需求是需要获取到某商家参加活动且活动截止时间大于当前时间的商品总数,可以使用如下sql满足要求:
    1. select count(*) from xxxtable where selid = 345705650 and end_time > now()
    执行时间仅为原来的1/4,新的sql发布之后thread_running报警消失,业务校验时间明显缩短。
    1. root@db >select count(*) from xxxtable where selid = 345705650 and end_time > now();
    2. +----------+
    3. | count(*) |
    4. +----------+
    5. | 2247052 |
    6. +----------+
    7. 1 row in set (0.82 sec)
    8. root@db >select count(1) from xxxtable where selid = 345705650 and end_time > now();
    9. +----------+
    10. | count(1) |
    11. +----------+
    12. | 2247052 |
    13. +----------+
    14. 1 row in set (0.79 sec)
    优化后的sql的explain 方式如下:
    1. root@db >explain select count(*) from xxxtable where selid = 345705650 and end_time > now() G
    2. *************************** 1. row ***************************
    3.            id: 1
    4.   select_type: SIMPLE
    5.         table: xxxtable
    6.          type: range
    7. possible_keys: idx_deller_id_end_time,idx_deller_id_start_time,idx_seller_item_start
    8.           key: idx_deller_id_end_time
    9.       key_len: 16
    10.           ref: NULL
    11.          rows: 1726768
    12.         Extra: Using where; Using index
    13. 1 row in set (0.00 sec)
    四 小结
     a 这个问题是在没有修改索引的基础中做出的优化,老的sql没有有效的利用当前的索引导致耗时操作
     b 对于不同count类型的sql 总结如下
       count(*)/count(1) 返回结果集的总和包括null和重复的值。
       count(column) 返回结果集中非空 column 的总和,执行查询的过程中会校验字段是否非空。
     c 在业务设计的时候 满足业务逻辑的前提下推荐使用count(*).
     d 从官方文档中摘录 Using where 和 Using index 的区别 
    1. Using index
    2.  The column information is retrieved from the table using only information in the index tree without having to do an additional seek to read the actual row. This strategy can be used when the query uses only columns that are part of a single index.
    3.  If the Extra column also says Using where, it means the index is being used to perform lookups of key values. Without Using where, the optimizer may be reading the index to avoid reading data rows but not using it for lookups. For example, if the index is a covering index for the query, the optimizer may scan it without using it for lookups. For InnoDB tables that have a user-defined clustered index, that index can be used even when Using index is absent from the Extra column. This is the case if type is index and key is PRIMARY.
    4.  Using where
    5.  A WHERE clause is used to restrict which rows to match against the next table or send to the client. Unless you specifically intend to fetch orexamine all rows from the table, you may have something wrong in your query if the Extra value is not Using where and the table join type is ALLor index. Even if you are using an index for all parts of a WHERE clause, you may see Using where if the column can be NULL.
  • 相关阅读:
    关于1961年4月16日尤文图斯91国际米兰的故事
    《转》struts2动态方法配置 Action,使一个Action可处理多请求
    struts2跳转后总是会返回input
    CentOS设置服务开机自动启动【转】
    CentOS 6.2系统安装后的初始环境设置
    Ubuntu安装小技巧 拔掉网线
    虚拟机最小安装CentOS 6.2
    CentOS 6.2配置MySQL服务器
    CentOS修改机器名称
    配置GNOME环境
  • 原文地址:https://www.cnblogs.com/qcfeng/p/6561980.html
Copyright © 2011-2022 走看看