MySQL性能优化
安装连接
查看当前系统的资源使用情况 top 查看系统IO状态 可以查看当前哪个磁盘设备总体的读写流量大小 iostat -d -x 1 pidstat -d 1 -d选项表示展示进程的I/O情况 查看这些I/O请求到底是哪些进程导致的 分析进程的数据读取,当然还要靠strace+lsof组合 strace -f -p 27458 -t表示显示线程,-a表示显示命令行参数 pstree -t -a -p 27458 lsof -p 27458 show full processlist; explain select * from products where productName='aaa'; CREATE INDEX products_index ON products (productName);
系统资源查看情况
查看整体IO性能问题
查看具体进程IO性能
查看进程操作的文件
数据库应用层优化
合理设置缓存机制
本文来自博客园,作者:不懂123,转载请注明原文链接:https://www.cnblogs.com/yxh168/p/16577768.html