MySQL中怎么分析性能?

打印 上一主题 下一主题

主题 963|帖子 963|积分 2889

MySQL中主要有4种方式可以分析数据库性能,分别是慢查询日记,profile,Com_xxx和explain。
慢查询日记

先用下面下令查询慢查询日记是否开启,
  1. show variables like 'slow_query_log';
  2. # 一般默认都是以下结果
  3. +----------------+-------+
  4. | Variable_name  | Value |
  5. +----------------+-------+
  6. | slow_query_log | OFF   |
  7. +----------------+-------+
复制代码

  • 若效果为 ON,表示慢查询日记已开启;若为 OFF,则需要手动开启。但是一样平常慢查询日记是默认不开启的,需要手动开启,因为需要指定指标,也就是多慢的SQL才算慢SQL。
暂时开启(重启 MySQL 后失效):
  1. # 开启慢查询日志
  2. set global slow_query_log = 'ON';
  3. # 设置一个时间,超过这个时间的查询都会被认为是慢查询,会记录到慢查询日志里,单位是秒(s)
  4. set global long_query_time = 2;
复制代码
永久开启:
linux环境下只需要改一下/etc/my.cnf设置文件,在里面加入如下两行设置
  1. # 0:关闭慢查询日志 1:开启慢查询日志
  2. slow_query_log = 1  
  3. # 指定日志文件路径(可选,不选则有默认路径)
  4. slow_query_log_file = /var/log/mysql/slow.log
  5. # 设置一个时间,超过这个时间的查询都会被认为是慢查询,会记录到慢查询日志里,单位是秒(s)
  6. long_query_time = 2
  7. # 是否记录未使用索引的查询(1表示开启,0表示关闭,默认关闭)
  8. log_queries_not_using_indexes = 1
复制代码
关键是参数【slow_query_log】和【long_query_time】一定要设置,设置完毕生存后然后使用【systemctl restart mysqld】在Linux下令行重启MySQL即可。此时慢查询的日记会记录到文件里,如果没有设置路径,使用到了默认路径,可以查询一下文件位置:
  1. SHOW VARIABLES LIKE 'slow_query_log_file';
  2. # 得到结果可能如下
  3. +---------------------+-------------------------------+
  4. | Variable_name       | Value                         |
  5. +---------------------+-------------------------------+
  6. | slow_query_log_file | /var/lib/mysql/hostname-slow.log |
  7. +---------------------+-------------------------------+
复制代码
然后去指定目录直接检察log文件即可。
profile

使用下列下令检察profiling是否开启
  1. show variables like 'profiling';
  2. # 默认是关闭的,一般查询结果如下
  3. +---------------+-------+
  4. | Variable_name | Value |
  5. +---------------+-------+
  6. | profiling     | OFF   |
  7. +---------------+-------+
复制代码
需要手动开启。
暂时开启profiling(重启 MySQL 后失效):
在SQL执行窗口设定参数
  1. set profiling = 1;
复制代码
永久开启:
在/etc/my.cnf文件中加入如下设置
  1. profiling = 1
复制代码
要记得修改过/etc/my.cnf文件以后要重启mysql。
此时任意执行几条sql,然后再来查询一下profile。
  1. # 此时为了测试我创建了一个表
  2. # 执行下面几条查询
  3. select * from test where id = 2;
  4. select * from test where id = 1;
  5. select * from test;
  6. # 执行下行语句,查询Query记录
  7. show profiles;
  8. # 得到如下结果,Query列是查询语句,Duration是执行消耗的时间,Query_ID是记录ID
  9. +----------+------------+------------------------------------+
  10. | Query_ID | Duration   | Query                              |
  11. +----------+------------+------------------------------------+
  12. |        1 | 0.00029275 | select * from test where id = 2    |
  13. |        2 | 0.00022375 | select * from test where id = 1    |
  14. |        3 | 0.00020425 | select * from test                 |
  15. +----------+------------+------------------------------------+
  16. # 如果想要对某一条SQL进行分析,比如这里Query_ID为1的记录消耗时间最长,想要看一下具体情况,可以使用如下命令
  17. show profile for query 1;
  18. # 得到如下结果
  19. +--------------------------------+----------+
  20. | Status                         | Duration |
  21. +--------------------------------+----------+
  22. | starting                       | 0.000115 |
  23. | Executing hook on transaction  | 0.000008 |
  24. | starting                       | 0.000009 |
  25. | checking permissions           | 0.000005 |
  26. | Opening tables                 | 0.000037 |
  27. | init                           | 0.000004 |
  28. | System lock                    | 0.000007 |
  29. | optimizing                     | 0.000009 |
  30. | statistics                     | 0.000045 |
  31. | preparing                      | 0.000011 |
  32. | executing                      | 0.000009 |
  33. | end                            | 0.000002 |
  34. | query end                      | 0.000002 |
  35. | waiting for handler commit     | 0.000007 |
  36. | closing tables                 | 0.000007 |
  37. | freeing items                  | 0.000010 |
  38. | cleaning up                    | 0.000007 |
  39. +--------------------------------+----------+
  40. # 可以看到开始时间,执行时间,打开表的时间,优化时间,准备时间,关闭表的时间等参数
  41. # 如果SQL查询很慢的话则可以从这里分析原因
复制代码
Com_%
  1. # 执行下列命令
  2. show status like 'Com_%';
  3. # 得到结果格式如下
  4. +-------------------------------------+-------+
  5. | Variable_name                       | Value |
  6. +-------------------------------------+-------+
  7. | Com_admin_commands                  | 0     |
  8. | Com_assign_to_keycache              | 0     |
  9. | Com_alter_db                        | 0     |
  10. | Com_alter_event                     | 0     |
  11. | Com_alter_function                  | 0     |
  12. | Com_alter_instance                  | 0     |
  13. | Com_alter_procedure                 | 0     |
  14. | Com_alter_resource_group            | 0     |
  15. | Com_alter_server                    | 0     |
  16. | Com_alter_table                     | 0     |
  17. | Com_alter_tablespace                | 0     |
  18. | Com_alter_user                      | 0     |
  19. | Com_alter_user_default_role         | 0     |
  20. | Com_analyze                         | 0     |
  21. | Com_begin                           | 0     |
  22. | Com_binlog                          | 0     |
  23. | Com_call_procedure                  | 0     |
  24. | Com_change_db                       | 1     |
  25. | Com_change_master                   | 0     |
  26. | Com_change_repl_filter              | 0     |
  27. | Com_change_replication_source       | 0     |
  28. | Com_check                           | 0     |
  29. | Com_checksum                        | 0     |
  30. | Com_clone                           | 0     |
  31. | Com_commit                          | 0     |
  32. | Com_create_db                       | 0     |
  33. | Com_create_event                    | 0     |
  34. | Com_create_function                 | 0     |
  35. | Com_create_index                    | 0     |
  36. | Com_create_procedure                | 0     |
  37. | Com_create_role                     | 0     |
  38. | Com_create_server                   | 0     |
  39. | Com_create_table                    | 0     |
  40. | Com_create_resource_group           | 0     |
  41. | Com_create_trigger                  | 0     |
  42. | Com_create_udf                      | 0     |
  43. | Com_create_user                     | 0     |
  44. | Com_create_view                     | 0     |
  45. | Com_create_spatial_reference_system | 0     |
  46. | Com_dealloc_sql                     | 0     |
  47. | Com_delete                          | 0     |
  48. | Com_delete_multi                    | 0     |
  49. | Com_do                              | 0     |
  50. | Com_drop_db                         | 0     |
  51. | Com_drop_event                      | 0     |
  52. | Com_drop_function                   | 0     |
  53. | Com_drop_index                      | 0     |
  54. | Com_drop_procedure                  | 0     |
  55. | Com_drop_resource_group             | 0     |
  56. | Com_drop_role                       | 0     |
  57. | Com_drop_server                     | 0     |
  58. | Com_drop_spatial_reference_system   | 0     |
  59. | Com_drop_table                      | 0     |
  60. | Com_drop_trigger                    | 0     |
  61. | Com_drop_user                       | 0     |
  62. | Com_drop_view                       | 0     |
  63. | Com_empty_query                     | 0     |
  64. | Com_execute_sql                     | 0     |
  65. | Com_explain_other                   | 0     |
  66. | Com_flush                           | 0     |
  67. | Com_get_diagnostics                 | 0     |
  68. | Com_grant                           | 0     |
  69. | Com_grant_roles                     | 0     |
  70. | Com_ha_close                        | 0     |
  71. | Com_ha_open                         | 0     |
  72. | Com_ha_read                         | 0     |
  73. | Com_help                            | 0     |
  74. | Com_import                          | 0     |
  75. | Com_insert                          | 0     |
  76. | Com_insert_select                   | 0     |
  77. | Com_install_component               | 0     |
  78. | Com_install_plugin                  | 0     |
  79. | Com_kill                            | 0     |
  80. | Com_load                            | 0     |
  81. | Com_lock_instance                   | 0     |
  82. | Com_lock_tables                     | 0     |
  83. | Com_optimize                        | 0     |
  84. | Com_preload_keys                    | 0     |
  85. | Com_prepare_sql                     | 0     |
  86. | Com_purge                           | 0     |
  87. | Com_purge_before_date               | 0     |
  88. | Com_release_savepoint               | 0     |
  89. | Com_rename_table                    | 0     |
  90. | Com_rename_user                     | 0     |
  91. | Com_repair                          | 0     |
  92. | Com_replace                         | 0     |
  93. | Com_replace_select                  | 0     |
  94. | Com_reset                           | 0     |
  95. | Com_resignal                        | 0     |
  96. | Com_restart                         | 0     |
  97. | Com_revoke                          | 0     |
  98. | Com_revoke_all                      | 0     |
  99. | Com_revoke_roles                    | 0     |
  100. | Com_rollback                        | 0     |
  101. | Com_rollback_to_savepoint           | 0     |
  102. | Com_savepoint                       | 0     |
  103. | Com_select                          | 8     |
  104. | Com_set_option                      | 1     |
  105. | Com_set_password                    | 0     |
  106. | Com_set_resource_group              | 0     |
  107. | Com_set_role                        | 0     |
  108. | Com_signal                          | 0     |
  109. | Com_show_binlog_events              | 0     |
  110. | Com_show_binlogs                    | 0     |
  111. | Com_show_charsets                   | 0     |
  112. | Com_show_collations                 | 0     |
  113. | Com_show_create_db                  | 0     |
  114. | Com_show_create_event               | 0     |
  115. | Com_show_create_func                | 0     |
  116. | Com_show_create_proc                | 0     |
  117. | Com_show_create_table               | 0     |
  118. | Com_show_create_trigger             | 0     |
  119. | Com_show_databases                  | 2     |
  120. | Com_show_engine_logs                | 0     |
  121. | Com_show_engine_mutex               | 0     |
  122. | Com_show_engine_status              | 0     |
  123. | Com_show_events                     | 0     |
  124. | Com_show_errors                     | 0     |
  125. | Com_show_fields                     | 1     |
  126. | Com_show_function_code              | 0     |
  127. | Com_show_function_status            | 0     |
  128. | Com_show_grants                     | 0     |
  129. | Com_show_keys                       | 0     |
  130. | Com_show_master_status              | 0     |
  131. | Com_show_open_tables                | 0     |
  132. | Com_show_plugins                    | 0     |
  133. | Com_show_privileges                 | 0     |
  134. | Com_show_procedure_code             | 0     |
  135. | Com_show_procedure_status           | 0     |
  136. | Com_show_processlist                | 0     |
  137. | Com_show_profile                    | 5     |
  138. | Com_show_profiles                   | 1     |
  139. | Com_show_relaylog_events            | 0     |
  140. | Com_show_replicas                   | 0     |
  141. | Com_show_slave_hosts                | 0     |
  142. | Com_show_replica_status             | 0     |
  143. | Com_show_slave_status               | 0     |
  144. | Com_show_status                     | 2     |
  145. | Com_show_storage_engines            | 0     |
  146. | Com_show_table_status               | 0     |
  147. | Com_show_tables                     | 2     |
  148. | Com_show_triggers                   | 0     |
  149. | Com_show_variables                  | 3     |
  150. | Com_show_warnings                   | 0     |
  151. | Com_show_create_user                | 0     |
  152. | Com_shutdown                        | 0     |
  153. | Com_replica_start                   | 0     |
  154. | Com_slave_start                     | 0     |
  155. | Com_replica_stop                    | 0     |
  156. | Com_slave_stop                      | 0     |
  157. | Com_group_replication_start         | 0     |
  158. | Com_group_replication_stop          | 0     |
  159. | Com_stmt_execute                    | 0     |
  160. | Com_stmt_close                      | 0     |
  161. | Com_stmt_fetch                      | 0     |
  162. | Com_stmt_prepare                    | 0     |
  163. | Com_stmt_reset                      | 0     |
  164. | Com_stmt_send_long_data             | 0     |
  165. | Com_truncate                        | 0     |
  166. | Com_uninstall_component             | 0     |
  167. | Com_uninstall_plugin                | 0     |
  168. | Com_unlock_instance                 | 0     |
  169. | Com_unlock_tables                   | 0     |
  170. | Com_update                          | 0     |
  171. | Com_update_multi                    | 0     |
  172. | Com_xa_commit                       | 0     |
  173. | Com_xa_end                          | 0     |
  174. | Com_xa_prepare                      | 0     |
  175. | Com_xa_recover                      | 0     |
  176. | Com_xa_rollback                     | 0     |
  177. | Com_xa_start                        | 0     |
  178. | Com_stmt_reprepare                  | 0     |
  179. | Compression                         | OFF   |
  180. | Compression_algorithm               |       |
  181. | Compression_level                   | 0     |
  182. +-------------------------------------+-------+
  183. # 重点查看4个参数的值,Com_insert,Com_delete,Com_update,Com_select的参数。因为我没有执行增删改操作,所以都是0,刚刚又查询了几次记录,这边的Com_select已经到8了,代表当前已经执行过8次select操作,0次insert,0次delete,0次update。
复制代码
在需要分析增删改查操纵到底是增删改比较多还是查询比较多的时候可以使用这个方式查询相干记录的执行情况,分析某个业务到底是查询比较多呢还是更新比较多,从而可以更好地对体系架构举行把控。
explain
  1. # 对需要执行的sql分析执行计划,假如要分析下面这条查询语句
  2. select * from tb_user where id=1;
  3. # 语法如下
  4. explain select * from test where id=1;
  5. # 其实就是在查询语句前加上explain关键字,insert,update和delete语句前也可以加上进行分析执行计划
  6. # 得到结果格式如下
  7. +----+-------------+---------+------------+-------+---------------+---------+---------+-------+------+----------+-------+
  8. | id | select_type | table   | partitions | type  | possible_keys | key     | key_len | ref   | rows | filtered | Extra |
  9. +----+-------------+---------+------------+-------+---------------+---------+---------+-------+------+----------+-------+
  10. |  1 | SIMPLE      | tb_user | NULL       | const | PRIMARY       | PRIMARY | 4       | const |    1 |   100.00 | NULL  |
  11. +----+-------------+---------+------------+-------+---------------+---------+---------+-------+------+----------+-------+
  12. # 需要关注id列
  13. # 相同的 id 表示同一查询块。
  14. # id 越大,执行优先级越高。
  15. # id 为 NULL 表示是 UNION 结果的合并操作。
  16. # -----------------------------------------------------
  17. # 需要关注type列,其中type列的介绍和性能如下(性能从高到低排列)
  18. # NULL:直接查询,不进行表操作,例如select 1 + 1;
  19. # system:表中只有一行数据(系统表)。
  20. # const:通过主键或唯一索引查找一行数据。
  21. # eq_ref:通过唯一索引关联表(多表 JOIN 时,每行只匹配一行)。
  22. # ref:通过非唯一索引查找数据。
  23. # range:使用索引范围扫描。
  24. # index:全索引扫描(扫描索引树,不访问数据行)。
  25. # ALL:全表扫描(性能最差)。
  26. # -----------------------------------------------------
  27. # 需要关注possible_keys列和key列
  28. # possible_keys代表可能用到的索引,key就是实际用到的索引,从这里可以分析索引是不是没有用到或者失效了
  29. # 优化的时候要尽量让没有使用到索引的语句使用索引
  30. # -----------------------------------------------------
  31. # 需要关注key_len
  32. # 如果用到了单列索引,则key_len是一个固定值
  33. # 如果用到了联合索引,key_len的值可能会因为部分索引失效而导致key_len的值不一样,可以通过这一列判断联合索引是否全部生效。
  34. # -----------------------------------------------------
  35. # 需要关注rows列,记录的是MySQL预估需要扫描的行数。
  36. # 行数越少,性能越好,如果值很大,可能需要优化索引或查询条件。
  37. # -----------------------------------------------------
  38. # 需要关注filtered列
  39. # filtered= Server层过滤后的行数/存储引擎层返回的行数 ×100%
  40. # 值越小,说明存储引擎层已经过滤了更多不满足条件的数据,Server 层只需处理少量数据。
  41. # -----------------------------------------------------
  42. # 重点关注Extra列,其中可能出现的值如下:
  43. # Using where:使用了 WHERE 条件过滤数据。
  44. # Using index:使用了覆盖索引(无需回表)。
  45. # Using temporary:使用了临时表(性能较差)。
  46. # Using filesort:使用了文件排序(性能较差)。
  47. # Using join buffer:使用了 JOIN 缓冲区(多表 JOIN 时)。
  48. # Impossible WHERE:WHERE 条件永远为假(无结果)。
  49. # 需要注意尽可能避免Using temporary和Using filesort,以及Impossible WHERE。
复制代码
免责声明:如果侵犯了您的权益,请联系站长,我们会及时删除侵权内容,谢谢合作!更多信息从访问主页:qidao123.com:ToB企服之家,中国第一个企服评测及商务社交产业平台。
回复

使用道具 举报

0 个回复

倒序浏览

快速回复

您需要登录后才可以回帖 登录 or 立即注册

本版积分规则

罪恶克星

金牌会员
这个人很懒什么都没写!
快速回复 返回顶部 返回列表