欢迎来到天天文库
浏览记录
ID:30505068
大小:19.31 KB
页数:16页
时间:2018-12-30
《mysql性能分析工具profile使用教程》由会员上传分享,免费在线阅读,更多相关内容在应用文档-天天文库。
1、我真正系统地接触和学习党的基本知识是在这次中级党校的培训班上。通过学习,了解了党的发展历程,对党的性质、宗旨、任务等基本知识有了进一步的了解mysql性能分析工具profile使用教程 分析sql执行带来的开销是优化sql的重要手段。在mysql数据库中,可以通过配置profiling参数来启用sql剖析。该参数可以在全局和session级别来设置。对于全局级别则作用于整个mysql实例,而session级别紧影响当前session。该参数开启后,后续执行的sql语句都将记录其资源开销,诸如io,上下文切换,cpu,memo
2、ry等等。根据这些开销进一步分析当前sql瓶颈从而进行优化与调整。本文描述了如何使用mysqlprofile,不涉及具体的样例分析。 1、有关profile的描述 代码如下: --当前版本 ]>showvariableslike'version'; +---------------+---------------------------------------+
3、variable_name
4、value
5、 +---------------+-------------------------------------
6、--+
7、version
8、5.6.17-enterprise-commercial-advanced
9、对党的认识也有了进一步的提高。才真正体会到了中国共产党的伟大、光荣和正确,更感到只有中国共产党是全中国最广大人民利益的忠实代表我真正系统地接触和学习党的基本知识是在这次中级党校的培训班上。通过学习,了解了党的发展历程,对党的性质、宗旨、任务等基本知识有了进一步的了解 +---------------+---------------------------------------+ --查看profiling系统变量 ]
10、>showvariableslike'%profil%'; +------------------------+-------+
11、variable_name
12、value
13、 +------------------------+-------+
14、have_profiling
15、yes
16、--只读变量,用于控制是否由系统变量开启或禁用profiling
17、profiling
18、off
19、--开启sql语句剖析功能
20、profiling_history_size
21、15
22、--设置保留profiling的数目,缺省为15,范围为0
23、至100,为0时将禁用profiling +------------------------+-------+ profiling[539] ifsetto0oroff(thedefault),statementprofilingisdisabled.ifsetto1oron,statementprof isenabledandtheshowprofileandshowprofilesstatementsprovideaccesstoprof information.seesection13.7.5.32,“show
24、profilessyntax”.对党的认识也有了进一步的提高。才真正体会到了中国共产党的伟大、光荣和正确,更感到只有中国共产党是全中国最广大人民利益的忠实代表我真正系统地接触和学习党的基本知识是在这次中级党校的培训班上。通过学习,了解了党的发展历程,对党的性质、宗旨、任务等基本知识有了进一步的了解 thisvariableisdeprecatedinmysql5.6.8andwillberemovedinafuturemysqlrelease. profiling_history_size[539] thenumbero
25、fstatementsforwhichtomaintainprofilinginformationifprofiling[539]is enabled.thedefaultvalueis15.themaximumvalueis100.settingthevalueto0effectively disablesprofiling.seesection13.7.5.32,“showprofilessyntax”. thisvariableisdeprecatedinmysql5.6.8andwillberemovedinaf
26、uturemysqlrelease. --获取profile的帮助 ]>helpprofile; name:'showprofile' description: syntax: showprofile[type[,type]...] [forqueryn] [
此文档下载收益归作者所有