mysql查询缓存碎片、缓存命中率及nagios监控-凯发app官方网站

凯发app官方网站-凯发k8官网下载客户端中心 | | 凯发app官方网站-凯发k8官网下载客户端中心
  • 博客访问: 6315112
  • 博文数量: 162
  • 博客积分: 3600
  • 博客等级: 中校
  • 技术积分: 10366
  • 用 户 组: 普通用户
  • 注册时间: 2011-01-19 11:23
个人简介

专注系统运维、网络架构,研究技术凯发app官方网站的解决方案,记录我的思想轨迹、工作学习、生活和关注的领域

文章分类
文章存档

2014年(2)

2013年(16)

2012年(27)

2011年(117)

相关博文
  • ·
  • ·
  • ·
  • ·
  • ·
  • ·
  • ·
  • ·
  • ·
  • ·

分类: mysql/postgresql

2012-11-30 13:34:13

mysql 的优化方案,在互联网上可以查找到非常多资料,今天对mysql缓存碎片和命中率作了详细了解,个人作了简单整理。


一、mysql查询缓存碎片和缓存命中率。



  1. mysql> show status like 'qcache%';
  2.         ------------------------------------
  3.         | variable_name | value |
  4.         ------------------------------------
  5.         | qcache_free_blocks | 5 |
  6.         | qcache_free_memory | 134176648 |
  7.         | qcache_hits | 110 |
  8.         | qcache_inserts | 245 |
  9.         | qcache_lowmem_prunes | 0 |
  10.         | qcache_not_cached | 7119 |
  11.         | qcache_queries_in_cache | 9 |
  12.         | qcache_total_blocks | 31 |
  13.         ------------------------------------
  14.         8 rows in set (0.01 sec)

mysql 查询缓存变量

变量名

说明

qcache_free_blocks

缓存中相邻内存块的个数。数目大说明可能有碎片。flush query cache 会对缓存中的碎片进行整理,从而得到一个空闲块。

qcache_free_memory

缓存中的空闲内存。

qcache_hits

每次查询在缓存中命中时就增大。

qcache_inserts

每次插入一个查询时就增大。命中次数除以插入次数就是不中比率;用 减去这个值就是命中率。在上面这个例子中,大约有 87% 的查询都在缓存中命中。

qcache_lowmem_prunes

缓存出现内存不足并且必须要进行清理以便为更多查询提供空间的次数。这个数字最好长时间来看;如果这个数字在不断增长,就表示可能碎片非常严重,或者内存很少。(上面的 free_blocks 和 free_memory 可以告诉您属于哪种情况)。

qcache_not_cached

不适合进行缓存的查询的数量,通常是由于这些查询不是 select 语句。

qcache_queries_in_cache

当前缓存的查询(和响应)的数量。

qcache_total_blocks

缓存中块的数量。




  1. mysql> show variables like '%query_cache%';

  2. -----------------------------------------

  3. | variable_name | value |

  4. -----------------------------------------

  5. | have_query_cache | yes |

  6. | query_cache_limit | 1048576 |

  7. | query_cache_min_res_unit | 4096 |

  8. | query_cache_size | 134217728 |

  9. | query_cache_type | on |

  10. | query_cache_wlock_invalidate | off |

  11. -----------------------------------------

  12. 6 rows in set (0.00 sec)

query_cache_min_res_unit    查询缓存分配的最小块的大小(字节)

query_alloc_block_size    为查询分析和执行过程中创建的对象分配的内存块大小
qcache_free_blocks    代表内存自由块的多少,反映了内存碎片的情况

==========================
1)当查询进行的时候,mysql把查询结果保存在qurey cache中,但如果要保存的结果比较大,超过query_cache_min_res_unit的值 ,这时候mysql将一边检索结果,一边进行保存结果,所以,有时候并不是把所有结果全部得到后再进行一次性保存,而是每次分配一块 query_cache_min_res_unit 大小的内存空间保存结果集,使用完后,接着再分配一个这样的块,如果还不不够,接着再分配一个块,依此类推,也就是说,有可能在一次查询中,mysql要 进行多次内存分配的操作。
2)内存碎片的产生。当一块分配的内存没有完全使用时,mysql会把这块内存trim掉,把没有使用的那部分归还以重 复利用。比如,第一次分配4kb,只用了3kb,剩1kb,第二次连续操作,分配4kb,用了2kb,剩2kb,这两次连续操作共剩下的 1kb 2kb=3kb,不足以做个一个内存单元分配, 这时候,内存碎片便产生了。
3)使用flush query cache,可以消除碎片

4)如果qcache_free_blocks值过大,可能是query_cache_min_res_unit值过大,应该调小些
5query_cache_min_res_unit的估计值:(query_cache_size - qcache_free_memory) / qcache_queries_in_cache

检查查询缓存使用情况

检查是否从查询缓存中受益的最简单的办法就是检查缓存命中率

当服务器收到select 语句的时候,qcache_hits com_select 这两个变量会根据查询缓存

的情况进行递增

查询缓存命中率的计算公式是:qcache_hits/(qcache_hits   com_select)

mysql> show status like '%com_select%';

--------------- -------

| variable_name | value |

--------------- -------

| com_select    | 1     |

--------------- -------

1 row in set (0.00 sec)

 

此时的查询缓存命中率:3/3 1=75%;由于个人的测试数据库,查询较少,更行更少,命中率颇高。


二、监控缓存命中率

通过nagios pnp4nagios来监控缓存命中率,并通过图表来展示。

1、监控脚本: check_mysql_qch.sh.sh


  1. #!/bin/bash

  2. #function:查询缓存命中率

  3. #time:20121130

  4. #author:system group

  5. while getopts ":w:c:h" optname

  6. do

  7. case "$optname" in

  8. "w")

  9. warn=$optarg

  10. ;;

  11. "c")

  12. cirt=$optarg

  13. ;;

  14. "h")

  15. echo "useage: check_mysql_qch.sh -w warn -c cirt"

  16. exit

  17. ;;

  18. "?")

  19. echo "unknown option $optarg"

  20. exit

  21. ;;

  22. ":")

  23. echo "no argument value for option $optarg"

  24. exit

  25. ;;

  26. *)

  27. # should not occur

  28. echo "unknown error while processing options"

  29. exit

  30. ;;

  31. esac

  32. done

  33. [ $? -ne 0 ] && echo "error: unknown option " && exit

  34. [ -z $warn ] && warn=60

  35. [ -z $cirt ] && cirt=50

  36. export selete=`/usr/local/mysql/bin/mysql -h 127.0.0.1 -uroot -bse "show global status like 'com_select';" |awk '{print $2}'`

  37. export hits=`/usr/local/mysql/bin/mysql -h 127.0.0.1 -uroot -bse "show global status like 'qcache_hits';" |awk '{print $2}'`

  38. a=$(($selete $hits))

  39. #rw_ratio=$(($a/$b))

  40. #echo "rw_ratio=$rw_ratio"

  41. #ratio=$(($rw_ratio*100))

  42. #echo "ratio=$ratio"

  43. if [ $a -ne "0" ];then

  44. percent=`awk 'begin{printf "%.2f%\n",('$hits'/'$a')*100}'`

  45. qch=`awk 'begin{printf ('$hits'/'$a')*100}'`

  46. fi

  47. c=`echo "$qch < $cirt" | bc`

  48. w=`echo "$qch < $warn" | bc`

  49. o=`echo "$qch > $warn" | bc`

  50. if [ $c == 1 ];then

  51. echo -e "cirt - mysql qcache hits is $percent,com_select is $selete,qcache_hits is $hits|qcache_hits=${qch}%;${selete};${hits};0"

  52. exit 2

  53. fi

  54. if [ $w == 1 ];then

  55. echo -e "warn - mysql qcache hits is $percent,com_select is $selete,qcache_hits is $hits|qcache_hits=${qch}%;${selete};${hits};0"

  56. exit 1

  57. fi

  58. if [ $o == 1 ];then

  59. echo -e "ok - mysql qcache hits is $percent,com_select is $selete,qcache_hits is $hits|qcache_hits=${qch}%;${selete};${hits};0"

  60. exit 0

  61. fi

2、生成报表

pnp4nagios templatescheck_mysql_qch.php 


  1. <?php

  2. #

  3. # 凯发app官方网站 copyright (c) 2006-2010 system ()

  4. # plugin: check_mysql_qch

  5. #

  6. $opt[1] = "--vertical-label hits/s -l0 --title \"mysql qcache hits for $hostname / $servicedesc\" ";

  7. #

  8. #

  9. #

  10. $def[1] = rrd::def("var1", $rrdfile[1], $ds[1], "average");

  11. if ($warn[1] != "") {

  12.     $def[1] .= "hrule:$warn[1]#ffff00 ";

  13. }

  14. if ($crit[1] != "") {

  15.     $def[1] .= "hrule:$crit[1]#ff0000 ";

  16. }

  17. $def[1] .= rrd::area("var1", "#0000ff", "mysql qcache hits percent") ;

  18. $def[1] .= rrd::gprint("var1", array("last", "average", "max"), "%6.2lf");

  19. ?>

结果:

(监控状态)


pnp4nagios图)

阅读(13152) | 评论(0) | 转发(4) |
给主人留下些什么吧!~~
")); function link(t){ var href= $(t).attr('href'); href ="?url=" encodeuricomponent(location.href); $(t).attr('href',href); //setcookie("returnouturl", location.href, 60, "/"); }
网站地图