IT评测·应用市场-qidao123.com

标题: GaussDB数据库--SQL执行计划详解 [打印本页]

作者: 欢乐狗    时间: 2025-1-8 22:03
标题: GaussDB数据库--SQL执行计划详解
GaussDB-详解

如SQL执行计划概述节中所说,EXPLAIN会显示执行计划,但并不会实际执行SQL语句。EXPLAIN ANALYZE和EXPLAIN PERFORMANCE两者都会实际执行SQL语句并返回执行信息。在这一节将具体表明执行计划及执行信息。

执行计划

以如下SQL语句为例:
  1. SELECT d, avg(a::numeric(7, 2)) FROM t_distinct GROUP BY d;
  2. SELECT * FROM t1, t2 WHERE t1.c1 = t2.c2;
复制代码


执行EXPLAIN的输出为:
  1. gaussdb=#  explain select d, avg(a::numeric(7, 2)) from t_distinct group by d;
  2. id |                     operation                     | E-rows | E-width | E-costs
  3. ----+---------------------------------------------------+--------+---------+---------
  4.   1 | ->  Row Adapter                                   |     20 |      40 | 14.52
  5.   2 |    ->  Vector Streaming (type: GATHER)            |     20 |      40 | 14.52
  6.   3 |       ->  Vector Hash Aggregate                   |     20 |      40 | 13.59
  7.   4 |          ->  Vector Streaming(type: REDISTRIBUTE) |     20 |       8 | 13.33
  8.   5 |             ->  Seq Scan on t_distinct         |     20 |       8 | 13.01
  9. (5 rows)
  10. gaussdb=#  EXPLAIN SELECT * FROM t1,t2 WHERE t1.c1 = t2.c2;
  11.                             QUERY PLAN                             
  12. -------------------------------------------------------------------
  13. Hash Join  (cost=23.73..341.30 rows=16217 width=180)
  14.    Hash Cond: (t1.c1 = t2.c2)
  15.    ->  Seq Scan on t1  (cost=0.00..122.17 rows=5317 width=76)
  16.    ->  Hash  (cost=16.10..16.10 rows=610 width=104)
  17.          ->  Seq Scan on t2  (cost=0.00..16.10 rows=610 width=104)
  18. (5 rows)
复制代码


执行计划字段解读(横向)

执行计划层级解读(纵向):
最顶层算子为Data Node Scan时,必要设置enable_fast_query_shipping为off才能看到具体的执行计划,如下计划:
  1. gaussdb=#  explain select c1,count(1) from t1 group by c1;
  2.                     QUERY PLAN                    
  3. --------------------------------------------------
  4. Data Node Scan  (cost=0.00..0.00 rows=0 width=0)
  5.    Node/s: All datanodes
  6. (2 rows)
复制代码


设置enable_fast_query_shipping参数之后,执行计划显示如下:
  1. gaussdb=#  set enable_fast_query_shipping=off;
  2. SET
  3. gaussdb=#  explain select c1,count(1) from t1 group by c1;
  4. id |          operation           | E-rows | E-width | E-costs
  5. ----+------------------------------+--------+---------+---------
  6.   1 | ->  Streaming (type: GATHER) |     20 |      12 | 14.23
  7.   2 |    ->  HashAggregate         |     20 |      12 | 13.30
  8.   3 |       ->  Seq Scan on t1     |     20 |       4 | 13.13
  9. (3 rows)
复制代码


执行计划中的紧张关键字阐明:

执行信息

在SQL调优过程中经常必要执行EXPLAIN ANALYZE或EXPLAIN PERFORMANCE检察SQL语句实际执行信息,通过对比实际执行与优化器估算之间的差别来为优化提供依据。EXPLAIN PERFORMANCE相对于EXPLAIN ANALYZE增加了每个DN上的执行信息。
以如下SQL语句为例:
  1. select count(1) from t1;
复制代码


执行EXPLAIN PERFORMANCE输出为:
  1. gaussdb=# explain performance select count(1) from t1;
  2. id |             operation              |    A-time     | A-rows | E-rows | E-distinct | Peak Memory  | E-memory | A-width | E-width | E-costs
  3. ----+------------------------------------+---------------+--------+--------+------------+--------------+----------+---------+---------+---------
  4.   1 | ->  Aggregate                      | 9.326         |      1 |      1 |            | 14KB         |          |         |       8 | 209.10
  5.   2 |    ->  Streaming (type: GATHER)    | 9.281         |      2 |      2 |            | 80KB         |          |         |       8 | 209.10
  6.   3 |       ->  Aggregate                | [5.981,6.491] |      2 |      2 |            | [13KB, 13KB] | 1MB      |         |       8 | 209.01
  7.   4 |          ->  Seq Scan on public.t1 | [2.553,2.909] |  20000 |  20000 |            | [15KB, 15KB] | 1MB      |         |       0 | 184.00
  8. (4 rows)
  9.           Memory Information (identified by plan id)         
  10. --------------------------------------------------------------
  11. Coordinator Query Peak Memory:
  12.          Query Peak Memory: 0MB
  13. DataNode Query Peak Memory
  14.          datanode1 Query Peak Memory: 2MB
  15.          datanode2 Query Peak Memory: 0MB
  16.    1 --Aggregate
  17.          Peak Memory: 14KB, Estimate Memory: 64MB
  18.    2 --Streaming (type: GATHER)
  19.          Peak Memory: 80KB, Estimate Memory: 64MB
  20.    3 --Aggregate
  21.          datanode1 Peak Memory: 13KB, Estimate Memory: 1024KB
  22.          datanode2 Peak Memory: 13KB, Estimate Memory: 1024KB
  23.    4 --Seq Scan on public.t1
  24.          datanode1 Peak Memory: 15KB, Estimate Memory: 1024KB
  25.          datanode2 Peak Memory: 15KB, Estimate Memory: 1024KB
  26. (15 rows)
  27. Targetlist Information (identified by plan id)
  28. ------------------------------------------------
  29.    1 --Aggregate
  30.          Output: count((count(1)))
  31.    2 --Streaming (type: GATHER)
  32.          Output: (count(1))
  33.          Node/s: All datanodes
  34.    3 --Aggregate
  35.          Output: count(1)
  36.    4 --Seq Scan on public.t1
  37.          Output: c1, c2, c3, c4, c5
  38.          Distribute Key: c1
  39. (10 rows)
  40.                                          Datanode Information (identified by plan id)                                         
  41. ------------------------------------------------------------------------------------------------------------------------------
  42.    1 --Aggregate
  43.          (actual time=9.326..9.326 rows=1 loops=1)
  44.          (Buffers: 0)
  45.          (CPU: ex c/r=-17813058098842432, ex row=2, ex cyc=-35626116197684864, inc cyc=71252232399791904)
  46.    2 --Streaming (type: GATHER)
  47.          (actual time=8.628..9.281 rows=2 loops=1)
  48.          (Buffers: 0)
  49.          (CPU: ex c/r=53439174298738384, ex row=2, ex cyc=106878348597476768, inc cyc=106878348597476768)
  50.    3 --Aggregate
  51.          datanode1 (actual time=5.980..5.981 rows=1 loops=1)
  52.          datanode2 (actual time=6.491..6.491 rows=1 loops=1)
  53.          datanode1 (Buffers: shared hit=85)
  54.          datanode2 (Buffers: shared hit=84)
  55.          datanode1 (CPU: ex c/r=-35622581151734248, ex row=10078, ex cyc=-359004372847177760768, inc cyc=71252232395610160)
  56.          datanode2 (CPU: ex c/r=-35622525572390744, ex row=9922, ex cyc=-353446698729260974080, inc cyc=71252232398542704)
  57.    4 --Seq Scan on public.t1
  58.          datanode1 (actual time=0.018..2.553 rows=10078 loops=1)
  59.          datanode2 (actual time=0.017..2.909 rows=9922 loops=1)
  60.          datanode1 (Buffers: shared hit=85)
  61.          datanode2 (Buffers: shared hit=84)
  62.          datanode1 (CPU: ex c/r=35629651228376004, ex row=10078, ex cyc=359075625079573381120, inc cyc=359075625079573381120)
  63.          datanode2 (CPU: ex c/r=35629706809278324, ex row=9922, ex cyc=353517950961659543552, inc cyc=353517950961659543552)
  64. (22 rows)
  65.                            User Define Profiling                           
  66. ---------------------------------------------------------------------------
  67. Plan Node id: 2  Track name: coordinator get datanode connection
  68.         coordinator1: (time=0.019 total_calls=1 loops=1)
  69. Plan Node id: 2  Track name: Coordinator serialize plan
  70.         coordinator1: (time=1.059 total_calls=1 loops=1)
  71. Plan Node id: 2  Track name: Coordinator send begin command
  72.         coordinator1: (time=0.003 total_calls=1 loops=1)
  73. Plan Node id: 2  Track name: Coordinator start transaction and send query
  74.         coordinator1: (time=0.045 total_calls=1 loops=1)
  75. (8 rows)
  76.                         ====== Query Summary =====                        
  77. --------------------------------------------------------------------------
  78. Datanode executor start time [datanode1, datanode2]: [0.421 ms,0.450 ms]
  79. Datanode executor run time [datanode1, datanode2]: [6.002 ms,6.528 ms]
  80. Datanode executor end time [datanode2, datanode1]: [0.027 ms,0.028 ms]
  81. Remote query poll time: 0.000 ms, Deserialze time: 0.000 ms
  82. System available mem: 8222310KB
  83. Query Max mem: 8310784KB
  84. Query estimated mem: 2048KB
  85. Coordinator executor start time: 0.181 ms
  86. Coordinator executor run time: 9.340 ms
  87. Coordinator executor end time: 0.052 ms
  88. Planner runtime: 0.421 ms
  89. Plan size: 3122 byte
  90. Query Id: 72339069014648468
  91. Total runtime: 9.657 ms
  92. (14 rows)
复制代码


上述示例中显示执行信息分为以下7个部分:
NOTICE:

更多详情请参考GaussDB 文档中心:https://doc.hcs.huawei.com/db/zh-cn/gaussdbqlh/24.1.30/productdesc/qlh_03_0001.html

免责声明:如果侵犯了您的权益,请联系站长,我们会及时删除侵权内容,谢谢合作!更多信息从访问主页:qidao123.com:ToB企服之家,中国第一个企服评测及商务社交产业平台。




欢迎光临 IT评测·应用市场-qidao123.com (https://dis.qidao123.com/) Powered by Discuz! X3.4