当前位置:网站首页>MySQL知识总结 (六) MySQL调优
MySQL知识总结 (六) MySQL调优
2022-08-02 14:05:00 【weixin_45773632】
MySQL调优金字塔理论
如下图所示:
如上图所示:
数据库优化维度有四个:硬件、系统配置、数据库表结构、SQL及索引优化成本:硬件>系统配置>数据库表结构>SQL及索引优化效果:硬件<系统配置<数据库表结构<SQL及索引
SQL优化工具
原文链接:大厂实践 - 美团: SQL优化工具SQLAdvisor开源
项目地址:https://github.com/Meituan-Dianping/SQLAdvisor/blob/master/doc/QUICK_START.md
常见调优技巧及面试
1. 实践中如何优化MySQL
最好是按照以下顺序优化:
- SQL 语句及索引的优化
- 数据库表结构的优化
- 系统配置的优化
- 硬件的优化
2. 百万条数据MySql分页问题
在开发过程中我们经常会使用分页,核心技术是使用limit进行数据的读取,在使用limit进行分页的测试过程中,得到以下数据:
select * from news order by id desc limit 0,10
耗时0.003秒
select * from news order by id desc limit 10000,10
耗时0.058秒
select * from news order by id desc limit 100000,10
耗时0.575秒
select * from news order by id desc limit 1000000,10
耗时7.28秒
我们惊讶的发现mysql在数据量大的情况下分页起点越大查询速度越慢,100万条起的查询速度已经需要7秒钟。这是一个我们无法接受的数值!
改进方案1:
SELECT * FROM news
WHERE id > (SELECT id FROM news ORDER BY id DESC LIMIT 1000000, 1)
ORDER BY id DESC
LIMIT 0,10
查询时间 0.365秒,提升效率是非常明显的!!原理是什么呢???
我们使用条件对id进行了筛选,在子查询 (select id from news order by id desc limit 1000000, 1) 中我们只查询了id这一个字段比起select * 或 select 多个字段 节省了大量的查询开销!
改进方案2:
适合id连续的系统,速度极快!
select * from news
where id between 1000000 and 1000010
order by id desc
边栏推荐
- C语言日记 4 变量
- [ROS] (04) Detailed explanation of package.xml
- [ROS] (01) Create ROS workspace
- C语言初级—常见问题(100~200素数,计算1+11+111+...,从键盘获取一个数并输出有几个位)
- 8580 Merge linked list
- Unit 11 Serializers
- 8581 Linear linked list inversion
- verilog学习|《Verilog数字系统设计教程》夏宇闻 第三版思考题答案(第十二章)
- C语言初级—判断一个数是不是素数(函数封装)
- Paddle window10 environment using conda installation
猜你喜欢
随机推荐
C语言sizeof和strlen的区别
St. Regis Takeaway Notes - Lecture 10 Swagger
宝塔搭建PESCMS-Ticket开源客服工单系统源码实测
Unit 8 Middleware
Unit 14 Viewsets and Routing
yolov5 improvement (1) Add attention focus mechanism
主存储器(一)
C语言初级—水仙花数
Paddle window10 environment using conda installation
Camera Hal(Hal3)层修改Preview流
Hands-on OCR (1)
Briefly write about the use and experience of PPOCRLabel
二进制乘法运算
verilog学习|《Verilog数字系统设计教程》夏宇闻 第三版思考题答案(第十一章)
VS Code无法安装插件之Unable to install because, the extension '' compatible with current version
无人驾驶综述:摘要
What's wrong with running yolov5 (1) p, r, map are all 0
Network pruning (1)
Kubernetes架构和组件
Building and getting started with the Flask framework