mysql 性能分析套件
#!/usr/local/python3./bin/python3.
#!coding:utf-
####################################
#目地:用于诊断mysql性能问题
#作者:蒋乐兴
#时间:--
#create user moniter@'127.0.0.1' identified by 'moniter@2048';
#
#################################### import mysql.connector as connector
import argparse
import psutil
import json
import sys
import os show_global_status_56="select variable_name,variable_value from information_schema.global_status where variable_name= %s"
show_global_variables_56="select variable_name,variable_value from information_schema.global_variables where variable_name= %s"
show_global_status_57="select variable_name,variable_value from performance_schema.global_status where variable_name= %s"
show_global_variables_57="select variable_name,variable_value from performance_schema.global_variables where variable_name= %s" class AnalyseBase(object):
def __init__(self,cursor,args):
self.cursor=cursor
self.args=args
self.result={} def Analyse(self):
"执行分析函数"
pass
def Print(self):
print(json.dumps(analyst.result,sort_keys=True,indent=,ensure_ascii=False)) class AnalyseInnodb(AnalyseBase):
def innodb_log_waits(self):
"status:innodb_log_waits innodb 等待刷新redo log 的次,如果它不是0,说明innodb_log_buffer_size 过小"
self.cursor.execute(args.show_global_status,('innodb_log_waits',))
name,value=self.cursor.fetchone()
comment=None
if int(value)==:
comment='正常'
else:
comment='innodb_log_waits > 0 应该适当增加innodb_log_buffer_size的大小'
self.result['innodb_log_waits']={'name':'innodb_log_waits','value':value,'comment':comment} def innodb_flush_log_at_trx_commit(self):
("variables:innodb_flush_log_at_trx_commit 0:事务提交时并不把redo log 写入日志文件,而是等待主线程每秒的刷新。"
"1:commit 时同步的方式刷新redo log 到日志文件"
"2:commit 时异步的方式刷新redo log 到日志文件")
self.cursor.execute(args.show_global_variables,('innodb_flush_log_at_trx_commit',))
name,value=self.cursor.fetchone()
comment=None
if int(value)==:
comment='正常、由于每个事务完成后都要同步的刷新日志,所以性能不是最好'
else:
comment='注意、有安全隐患;0:事务提交时并不把redo log 写入日志文件,而是等待主线程每秒的刷新;2:commit 时异步的方式刷新redo log 到日志文件。'
self.result['innodb_flush_log_at_trx_commit']={'name':'innodb_flush_log_at_trx_commit','value':value,'comment':comment} def innodb_buffer_pool_size(self):
self.cursor.execute(args.show_global_variables,('innodb_buffer_pool_size',))
name,value=self.cursor.fetchone()
memory_object=psutil.virtual_memory();
total_memory=memory_object.total
rate=float(value)/float(total_memory)
comment=None
if rate <=0.75:
comment="注意、innodb_buffer_pool_size 过小;total_memory:{0}{1} / innodb_buffer_pool_size:{2}{3} = {4}%"
elif rate<=0.85:
comment="正常、innodb_buffer_pool_size 合适;total_memory:{0}{1} / innodb_buffer_pool_size:{2}{3} = {4}%"
else:
comment="注意、innodb_buffer_pool_size 过大;total_memory:{0}{1} / innodb_buffer_pool_size:{2}{3} = {4}%"
sign=args.memoryunit['sign']
unit=int(args.memoryunit['unit'])
value=int(value)
comment=comment.format(value/unit,sign,total_memory/unit,sign,rate*)
self.result['innodb_buffer_pool_size']={'name':'innodb_buffer_pool_size','value':"{0}{1}".format(value/unit,sign),'comment':comment} def innodb_file_per_table(self):
"variables:innodb_file_per_table 不做成单独表空间的话管理不方便"
self.cursor.execute(args.show_global_variables,('innodb_file_per_table',))
name,value=self.cursor.fetchone()
comment=None
if comment=='ON':
comment='正常'
else:
comment='注意、建议开启innodb_file_per_table,以方式管理innodb表空间文件'
self.result['innodb_file_per_table']={'name':'innodb_file_per_table','value':value,'comment':comment} def innodb_io_capacity(self):
"1:在合并插入缓冲时,合并插入缓冲数量为innodb_io_capacity的5%; 2:在从缓冲区刷新脏页时,刷新脏页的数量为innodb_io_capacity页。"
self.cursor.execute(args.show_global_variables,('innodb_io_capacity',))
name,value=self.cursor.fetchone()
comment=("注意、无法确认最优值,请核对磁盘IO能力。在合并插入缓冲时,合并插入缓冲数量为innodb_io_capacity的5%;"
"在从缓冲区刷新脏页时,刷新脏页的数量为innodb_io_capacity页。")
self.result['innodb_io_capacity']={'name':'innodb_io_capacity','value':value,'comment':comment} def innodb_max_dirty_pages_pct(self):
"innodb 在每秒刷新缓冲池时会去判断这个值,如果大于innodb_max_dirty_pages_pct,才会去刷新100个脏页"
self.cursor.execute(args.show_global_variables,('innodb_max_dirty_pages_pct',))
name,value=self.cursor.fetchone()
comment=None
if int(value) <=:
comment=("注意、innodb_max_dirty_pages_pct 过小;这会增加磁盘的IO负载,请适当增加,推荐值75~80")
elif int(value) <=:
comment='正常'
else:
comment='注意、innodb_max_dirty_pages_pct 过大;脏面数量过大,这会影响服务宕机后,重启的用时'
self.result['innodb_max_dirty_pages_pct']={'name':'innodb_max_dirty_pages_pct','value':value,'comment':comment} def Analyse(self):
self.innodb_log_waits()
self.innodb_file_per_table()
self.innodb_flush_log_at_trx_commit()
self.innodb_io_capacity()
self.innodb_max_dirty_pages_pct()
self.innodb_buffer_pool_size() if __name__=="__main__":
parser=argparse.ArgumentParser()
parser.add_argument('--host',default='127.0.0.1',help='ip address of mysql server.....')
parser.add_argument('--port',default=,type=int,help='port number of mysql server....')
parser.add_argument('--user',default='moniter',help='mysql user name................')
parser.add_argument('--password',default='moniter@2048',help='password of mysql user.........')
parser.add_argument('--mysqlversion',default=5.6,choices=['5.6','5.7'],help='version of mysql server........')
parser.add_argument('--memoryunit',default='MB',choices=['G','GB','M','MB','K','KB'])
parser.add_argument('target',default='innodb',choices=['innodb','binlog','all'],help='the part of mysql that you want to tuning')
args=parser.parse_args()
#隔离不同版本mysql数据库的差异
if args.mysqlversion==5.6:
args.show_global_status=show_global_status_56
args.show_global_variables=show_global_variables_56
elif args.mysqlversion==5.7:
args.show_global_status=show_global_status_57
args.show_global_variables=show_global_variables_57
#调整内存单位
unit=*
if args.memoryunit in('G','GB'):
unit=**
elif args.memoryunit in ('M','MB'):
unit=*
elif args.memoryunit in ('K','KB'):
unit=
args.memoryunit={'sign':args.memoryunit,'unit':unit}
cnx=None
cursor=None
connection_config={
'host':args.host,
'port':args.port,
'user':args.user,
'password':args.password
}
try:
cnx=connector.connect(**connection_config)
cursor=cnx.cursor()
analyst=AnalyseInnodb(cursor,args)
analyst.Analyse()
analyst.Print()
except Exception as err:
print(err)
finally:
if cnx != None:
cnx.close()
cursor.close()
mysql 性能分析套件的更多相关文章
- MySQL性能分析及explain的使用
MySQL性能分析及explain用法的知识 1.使用explain语句去查看分析结果 如explain select * from test1 where id=1;会出现:id selectty ...
- MySQL性能分析及explain的使用说明
1.使用explain语句去查看分析结果 如explain select * from test1 where id=1;会出现:id selecttype table type possible_k ...
- mysql性能分析show profile/show profiles
MySQL性能分析show profiles show profile 和 show profiles 语句可以展示当前会话(退出session后,profiling重置为0) 中执行语句的资源使用情 ...
- MySQL性能分析和优化-part 1
MySQL性能优化 平时我们在使用MySQL的时候,怎么评估系统的运行状态,怎么快速定位系统瓶颈,又如何快速解决问题呢? 本文总结了多年来MySQL优化的经验,系统介绍MySQL优化的方法. OS性能 ...
- MySQL性能分析, mysql explain执行计划详解
MySQL性能分析 MySQL性能分析及explain用法的知识是本文我们主要要介绍的内容,接下来就让我们通过一些实际的例子来介绍这一过程,希望能够对您有所帮助. 1.使用explain语句去查看分析 ...
- mysql性能分析工具
一.EXPALIN 在SQL语句之前加上EXPLAIN关键字就可以获取这条SQL语句执行的计划 那么返回的这些字段是什么呢? 我们先关心一下比较重要的几个字段: 1. select_type 查询类型 ...
- MySQL性能分析(转)
第一步:检查系统的状态 通过操作系统的一些工具检查系统的状态,比如CPU.内存.交换.磁盘的利用率.IO.网络,根据经验或与系统正常时的状态相比对,有时系统表面上看起来看空闲,这也可能不是一个正常的状 ...
- mysql性能分析-------profiling和explain
1. profiling之性能分析 MySQL5.0.37版本以上支持了Profiling – 官方手册.此工具可用来查询 SQL 会执行多少时间,System lock和Table lock 花多少 ...
- MySQL性能分析、及调优工具使用详解
本文汇总了MySQL DBA日常工作中用到的些工具,方便初学者,也便于自己查阅. 先介绍下基础设施(CPU.IO.网络等)检查的工具: vmstat.sar(sysstat工具包).mpstat.op ...
随机推荐
- Java开发工具与程序调试
开发工具:MyEclipse,Eclipse等. 程序调试: (1)断点:设置断点是程序调试中必不可少的手段,Java调试器每次遇到程序断点时都会将当前线程挂起,即暂停当前程序的运行.(在Eclip ...
- CSS3----border-sizing
#wrapper input[type="text"], #wrapper input[type="password"] { /* display: flex; ...
- (转载)Setup Factory 会话变量
本文转自http://www.cnblogs.com/lzjsky/archive/2010/11/18/1880440.html 方便今后查询 Session variables are speci ...
- 15款免费WiFi入侵破解安全测试工具
以下是的15款免费(接近免费)的WiFi网络入侵测试工具.这些工具将帮你发现流氓AP,弱Wi-Fi密码等安全隐患,在黑客光临之前把漏洞补上. 一.Vistumbler扫描器 Kismet是一个开源的W ...
- 使用jQuery来检测远程图片文件是否存在
使用jQuery来检测远程图片文件是否存在 最近为我的憨豆人笑园添加图片功能时,遇到了这个问题,用户可以填写一个远程的图片地址,也可以上传一个本地图片.为了不浪费服务器的资源,我们需要在客户端先对用户 ...
- Linux服务器SNMP常用OID (转)
原文地址:http://www.haiyun.me/archives/linux-snmp-oid.html 收集整理一些Linux下snmp常用的OID,用做服务器监控很不错. 服务器负载: 1 2 ...
- [置顶] vi、akw和sed总结
- 《Java程序员面试笔试宝典》之volatile有什么作用
在由Java语言编写的程序中,有时候为了提高程序的运行效率,编译器会自动对其进行优化,把经常被访问的变量缓存起来,程序在读取这个变量的时候有可能会直接从缓存(例如寄存器)中来读取这个值,而不会去内存中 ...
- hdu 5650 so easy (异或)
我们考虑集合中的每个数x对答案的贡献. 设集合有n个数,则包含x的子集个数有2^(n-1)个. 那么当n > 1时,x出现了偶数次,所以其对答案的贡献就是0:当 n = 1时,其对答案的贡献是 ...
- URL重写是实现PHP伪静态
URL重写是实现PHP伪静态 应该这样说才是,URL重写是实现PHP伪静态的方式之一, 具体如: http://www.plframe.com/?x=1&y=2&z=3 换成 http ...