Skip to content

Commit 107337c

Browse files
committed
[docs update]添加深度分页问题的原因
1 parent a43c620 commit 107337c

File tree

2 files changed

+7
-10
lines changed

2 files changed

+7
-10
lines changed

docs/high-performance/deep-pagination-optimization.md

Lines changed: 7 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -18,20 +18,18 @@ head:
1818
# MySQL 在无法利用索引的情况下跳过1000000条记录后,再获取10条记录
1919
SELECT * FROM t_order ORDER BY id LIMIT 1000000, 10
2020
```
21+
2122
## 深度分页问题的原因
22-
**全表扫描**:当OFFSET值较大时,MySQL可能会选择执行全表扫描而不是使用索引。
23-
![image](https://github.com/user-attachments/assets/d2537428-74db-4eba-bd1b-20b0ef681b8e)
24-
![image](https://github.com/user-attachments/assets/00467d02-b5bd-4241-8145-acded334b76a)
2523

26-
具体的临界点每个机器不一样,我的机器上是5980,为什么产生呢?
27-
![image](https://github.com/user-attachments/assets/19bb5403-398b-4bff-934a-7db2e31995aa)
28-
![image](https://github.com/user-attachments/assets/d01a5b84-a47e-4ddd-966d-520cc3d3b3bd)
29-
MySQL数据库的查询优化器是采用了基于代价的,而查询代价的估算是基于CPU代价和IO代价。
30-
如果MySQL在查询代价估算中,认为全表扫描方式比走索引扫描的方式效率更高的话,就会放弃索引,直接全表扫描。
31-
这就是为什么在大分页的SQL查询中,明明给该字段加了索引,但是MySQL却走了全表扫描的原因。
24+
当查询偏移量过大时,MySQL 的查询优化器可能会选择全表扫描而不是利用索引来优化查询。这是因为扫描索引和跳过大量记录可能比直接全表扫描更耗费资源。
25+
26+
![深度分页问题](https://oss.javaguide.cn/github/javaguide/mysql/deep-pagination-phenomenon.png)
3227

28+
不同机器上这个查询偏移量过大的临界点可能不同,取决于多个因素,包括硬件配置(如 CPU 性能、磁盘速度)、表的大小、索引的类型和统计信息等。
3329

30+
![转全表扫描的临界点](https://oss.javaguide.cn/github/javaguide/mysql/deep-pagination-phenomenon-critical-point.png)
3431

32+
MySQL 的查询优化器采用基于成本的策略来选择最优的查询执行计划。它会根据 CPU 和 I/O 的成本来决定是否使用索引扫描或全表扫描。如果优化器认为全表扫描的成本更低,它就会放弃使用索引。不过,即使偏移量很大,如果查询中使用了覆盖索引(covering index),MySQL 仍然可能会使用索引,避免回表操作。
3533

3634
## 深度分页优化建议
3735

docs/system-design/framework/spring/spring-design-patterns-summary.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -346,7 +346,6 @@ Spring 框架中用到了哪些设计模式?
346346

347347
- 《Spring 技术内幕》
348348
- <https://blog.eduonix.com/java-programming-2/learn-design-patterns-used-spring-framework/>
349-
- <http://blog.yeamin.top/2018/03/27/单例模式-Spring%20单例实现原理分析/>
350349
- <https://www.tutorialsteacher.com/ioc/inversion-of-control>
351350
- <https://design-patterns.readthedocs.io/zh_CN/latest/behavioral_patterns/observer.html>
352351
- <https://juejin.im/post/5a8eb261f265da4e9e307230>

0 commit comments

Comments
 (0)