tidb courses: day9

tidb day9

Posted by cslqm on December 21, 2020

TiDB 的 SQL 性能优化指南

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
--SQL--> Parser --AST--> logical optimizer
                                              |
                                              |
                                           logical Plan
                                              |
                                              V
<--result -- root executor <-physical plan--  physical optimizer
    |----------------------                   ^
    |                     |                   |
    V                     Feedback           cardinality estimation
    DistSQL               |                    |
    |                     V                    |
    |                     statistics-----------
    CopTask
    |
    V
    TiKV ....(表示多个)

优化器