博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
mysql简单性能排查
阅读量:6695 次
发布时间:2019-06-25

本文共 1124 字,大约阅读时间需要 3 分钟。

 

mysql> show variables;  

mysql> show processlist;

mysql> show status;

mysql> show global status;

mysql> show variables like '%slow%';

mysql> show global status like '%slow%';

mysql> show status like 'Slow_queries';

mysql> show status like 'Threads_created'; 

mysql> show engine innodb status\G; 

mysql> show global status like 'table_locks%';

mysql> show status like '%lock%'; 

===================================

mysql> show global status like 'open_files';  

mysql> show variables like 'open_files_limit';  

mysql> show status like 'key%';

mysql> show status like 'innodb_buffer_pool_read%';

==================================

mysql> show status like 'Slave_running';

mysql> show status like 'Threads_connected';

mysql> show status like 'Threads_running';

mysql> show status like 'Aborted_clients';

mysql> show status like 'Questions';

mysql> show status like 'Handler_%';

mysql> show status like 'Opened_tables';

mysql> show status like 'Select_full_join';

mysql> show status like 'Create_tmp%';

mysql> show status like 'Binlog_cache%';

mysql> show status like 'innodb_log_waits';

 

转载于:https://www.cnblogs.com/taosim/p/4201026.html

你可能感兴趣的文章
Hadoop 概述
查看>>
perl 工具小脚本
查看>>
SQL存储过程调试
查看>>
[转载]手机软件开发之我见
查看>>
UNITY实现FLASH中的setTimeout
查看>>
C#文件和文件文件夹按时间、名称排序-顺序与倒序
查看>>
TMPFS详解
查看>>
《异构信息网络挖掘: 原理和方法》—— 第2章 基于排名的聚类 2.1 概述
查看>>
[案例]网易云音乐的个性化推荐
查看>>
《QTP自动化测试权威指南(第二版)》—第2章2.3节搜索标签(Search Tab)
查看>>
数据结构
查看>>
王亟亟的Python学习之路(10)-函数对象的作用域,函数作为返回值,闭包
查看>>
【hibernate框架】一对一双向外键关联(Annotation实现)
查看>>
Android热修复简单总结
查看>>
CSS 火焰?不在话下
查看>>
设计模式--适配器模式(Adapter Pattern)
查看>>
谈谈我理解的Android组件化
查看>>
史上最清晰易懂的babel配置解析
查看>>
spring boot2.x 整合Mybatis
查看>>
我的前端那些事 --less进阶
查看>>