EXPLAIN shows the execution plan of an SQL statement.
The execution plan shows how the tables referenced by the SQL statement will be scanned, for example, by plain sequential scan or index scan. If multiple tables are referenced, the execution plan also shows what join algorithms will be used to bring together the required rows from each input table.
The most critical part of the display is the estimated statement execution cost, which is the planner's guess at how long it will take to run the statement.
The ANALYZE option causes the statement to be executed, not only planned. Then actual runtime statistics are added to the display, including the total elapsed time expended within each plan node (in milliseconds) and the total number of rows it actually returned. This is useful to check whether the planner's estimates are close to reality.
The statement is executed when the ANALYZE option is used. To use EXPLAIN ANALYZE on an INSERT, UPDATE, DELETE, CREATE TABLE AS, or EXECUTE statement without letting the command affect your data, use this approach:
1 2 3 | START TRANSACTION; EXPLAIN ANALYZE ...; ROLLBACK; |
1 | EXPLAIN [ ( option [, ...] ) ] statement; |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 | ANALYZE [ boolean ] | ANALYSE [ boolean ] | VERBOSE [ boolean ] | COSTS [ boolean ] | CPU [ boolean ] | DETAIL [ boolean ] | NODES [ boolean ] | NUM_NODES [ boolean ] | BUFFERS [ boolean ] | TIMING [ boolean ] | PLAN [ boolean ] | FORMAT { TEXT | XML | JSON | YAML } | BLOCKNAME [boolean] | OUTLINE [boolean] | WARMUP | WARMUP HOT |
1 | EXPLAIN { [ { ANALYZE | ANALYSE } ] [ VERBOSE ] | PERFORMANCE } statement; |
1 | EXPLAIN ( STATS [ boolean ] ) statement; |
1 | EXPLAIN PERFORMANCE statement; |
DDL statement such as CREATE, CREATE INDEX, DROP, VACUUM FULL, ANALYZE, and COPY are supported.
1 | EXPLAIN WARMUP statement; |
1 | EXPLAIN WARMUP HOT statement; |
Specifies the SQL statement to explain.
Displays the actual run times and other statistics.
Valid value:
Displays additional information regarding the plan.
Valid value:
Includes information on the estimated total cost of each plan node, as well as the estimated number of rows and the estimated width of each row.
Valid value:
Prints information on CPU usage.
Valid value:
Prints DN information.
Valid value:
In 8.2.1 and later cluster versions, if Detail is enabled in EXPLAIN, the skew value comparison time is displayed in the execution plan.
Prints information about the nodes executed by query.
Valid value:
Prints the quantity of executing nodes.
Valid value:
Includes information on buffer usage.
Valid value:
Includes the startup time and the time spent on the output node.
Valid value:
Specifies whether to store the execution plan in PLAN_TABLE. If this parameter is set to on, the execution plan is stored in PLAN_TABLE and is not displayed on the screen. Therefore, this parameter cannot be used together with other parameters when it is set to on.
Valid value:
Specifies the output format.
Value range: TEXT, XML, JSON, and YAML.
Default value: TEXT
Displays the blockname information of an operator.
The blockname information is printed only when explain_perf_mode is set to pretty.
Value range: Boolean
Default value: TRUE
Displays outline information extracted from the plan.
The outline is printed only when explain_perf_mode is set to pretty.
Value range: Boolean
Default value: TRUE
This option prints all relevant information in execution.
Specifies whether to display information required for reproducing the execution plan of an SQL statement, including the object definition, statistics, and configuration parameters. The information is usually used for fault locating.
Valid value:
Processes the queried data in the sequence of A1in > A1out > Am. This is supported only by clusters of version 9.1.0.200 or later.
Directly adds the queried data to the Am column. This is supported only by clusters of version 9.1.0.200 or later.
Create the tpcds.customer_address_p1 table.
1 | CREATE TABLE tpcds.customer_address_p1 AS TABLE tpcds.customer_address; |
Change the value of explain_perf_mode to normal.
1 | SET explain_perf_mode=normal; |
Display an execution plan for simple queries in the table.
1 2 3 4 5 6 | EXPLAIN SELECT * FROM tpcds.customer_address_p1; QUERY PLAN ---------------------------------------------------------------------------- Data Node Scan on "__REMOTE_FQS_QUERY__" (cost=0.00..0.00 rows=0 width=0) Node/s: All datanodes (2 rows) |
Generate an execution plan in JSON format (assume explain_perf_mode is set to normal).
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 | EXPLAIN(FORMAT JSON) SELECT * FROM tpcds.customer_address_p1; QUERY PLAN --------------------------------------------------- [ + { + "Plan": { + "Node Type": "Data Node Scan", + "RemoteQuery name": "__REMOTE_FQS_QUERY__",+ "Alias": "__REMOTE_FQS_QUERY__", + "Startup Cost": 0.00, + "Total Cost": 0.00, + "Plan Rows": 0, + "Plan Width": 0, + "Nodes": "All datanodes" + } + } + ] (1 row) |
If there is an index and we use a query with an indexable WHERE condition, EXPLAIN might show a different plan.
1 2 3 4 5 6 | EXPLAIN SELECT * FROM tpcds.customer_address_p1 WHERE ca_address_sk=10000; QUERY PLAN ------------------------------------------------------------------------------ Data Node Scan on "__REMOTE_LIGHT_QUERY__" (cost=0.00..0.00 rows=0 width=0) Node/s: datanode2 (2 rows) |
Generate an execution plan in YAML format (assume explain_perf_mode is set to normal).
1 2 3 4 5 6 7 8 9 10 11 12 13 | EXPLAIN(FORMAT YAML) SELECT * FROM tpcds.customer_address_p1 WHERE ca_address_sk=10000; QUERY PLAN ------------------------------------------------ - Plan: + Node Type: "Data Node Scan" + RemoteQuery name: "__REMOTE_LIGHT_QUERY__"+ Alias: "__REMOTE_LIGHT_QUERY__" + Startup Cost: 0.00 + Total Cost: 0.00 + Plan Rows: 0 + Plan Width: 0 + Nodes: "datanode2" (1 row) |
Here is an example of an execution plan with cost estimates suppressed.
1 2 3 4 5 6 | EXPLAIN(COSTS FALSE)SELECT * FROM tpcds.customer_address_p1 WHERE ca_address_sk=10000; QUERY PLAN -------------------------------------------- Data Node Scan on "__REMOTE_LIGHT_QUERY__" Node/s: datanode2 (2 rows) |
Here is an example of an execution plan for a query that uses an aggregate function.
1 2 3 4 5 6 7 8 9 10 | EXPLAIN SELECT SUM(ca_address_sk) FROM tpcds.customer_address_p1 WHERE ca_address_sk<10000; QUERY PLAN --------------------------------------------------------------------------------------- Aggregate (cost=18.19..14.32 rows=1 width=4) -> Streaming (type: GATHER) (cost=18.19..14.32 rows=3 width=4) Node/s: All datanodes -> Aggregate (cost=14.19..14.20 rows=3 width=4) -> Seq Scan on customer_address_p1 (cost=0.00..14.18 rows=10 width=4) Filter: (ca_address_sk < 10000) (6 rows) |
Delete the tpcds.customer_address_p1 table.
1 | DROP TABLE tpcds.customer_address_p1; |
Run the EXPLAIN PERFORMANCE command for the ANALYZE statement.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 | EXPLAIN PERFORMANCE ANALYZE t2_dist_row; QUERY EXEC INFO ----------------------------------------------------------------------- lock FirstCN: coordinator1: actual time=0.240 loops=1 estimate rows: actual time=[datanode3 0.000, datanode1 0.001] coordinator1: actual time=0.000 loops=1 datanode1: actual time=0.001 loops=1 datanode2: actual time=0.000 loops=1 datanode3: actual time=0.000 loops=1 sample rows: actual time=[datanode1 5.109, coordinator1 119.838] coordinator1: actual time=119.838 loops=1 datanode1: actual time=5.109 loops=1 datanode2: actual time=5.621 loops=1 datanode3: actual time=5.342 loops=1 fetch global stats: coordinator1: actual time=8.501 loops=1 calc stats: actual time=[datanode3 80.794, datanode2 109.155] coordinator1: actual time=97.452 loops=1 datanode1: actual time=94.375 loops=1 datanode2: actual time=109.155 loops=1 datanode3: actual time=80.794 loops=1 calc column stats: actual time=[datanode2 0.938, datanode3 9.811] coordinator1: actual time=5.162 loops=2 datanode1: actual time=1.453 loops=2 datanode2: actual time=0.938 loops=2 datanode3: actual time=9.811 loops=2 calc index stats: actual time=[datanode3 12.392, coordinator1 36.113] coordinator1: actual time=36.113 loops=1 datanode1: actual time=15.933 loops=1 datanode2: actual time=13.419 loops=1 datanode3: actual time=12.392 loops=1 calc expr stats: actual time=[datanode3 41.665, datanode2 78.442] coordinator1: actual time=55.608 loops=1 datanode1: actual time=63.179 loops=1 datanode2: actual time=78.442 loops=1 datanode3: actual time=41.665 loops=1 sync stats: coordinator1: actual time=7.906 loops=1 General Tracks CN build CN connection: coordinator1: actual time=0.002 loops=1 CN build DN connection: coordinator1: actual time=0.070 loops=1 -> execute ddl on other CN: coordinator1: actual time=0.001 loops=1 -> execute ddl on other DN: coordinator1: actual time=0.000 loops=1 Query Id: 72902018968225366 Total runtime: 242.211 ms (48 rows) |
Show the blockname of a plan.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 | EXPLAIN (BLOCKNAME ON) SELECT SUM(ca_address_sk) FROM tpcds.customer_address_p1 WHERE ca_address_sk<10000; QUERY PLAN --------------------------------------------------------------------------------------------- id | operation | E-rows | E-memory | E-width | E-costs ----+----------------------------------------------+--------+----------+---------+--------- 1 | -> Aggregate | 1 | | 12 | 16.14 2 | -> Streaming (type: GATHER) | 2 | | 12 | 16.14 3 | -> Aggregate | 2 | 1MB | 12 | 10.14 4 | -> Seq Scan on customer_address_p1 | 7 | 1MB | 4 | 10.12 Predicate Information (identified by plan id) --------------------------------------------- 4 --Seq Scan on customer_address_p1 Filter: (ca_address_sk < 10000) Query Block Name / Object Alias (identified by plan id) ------------------------------------------------------- 1 - sel$1 4 - sel$1 / customer_address_p1@"sel$1" ====== Query Summary ===== ------------------------------- System available mem: 4710400KB Query Max mem: 4710400KB Query estimated mem: 2048KB (22 rows) |
Show the outline of a plan.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 | EXPLAIN (OUTLINE ON) SELECT SUM(ca_address_sk) FROM tpcds.customer_address_p1 WHERE ca_address_sk<10000; QUERY PLAN --------------------------------------------------------------------------------------------- id | operation | E-rows | E-memory | E-width | E-costs ----+----------------------------------------------+--------+----------+---------+--------- 1 | -> Aggregate | 1 | | 12 | 16.14 2 | -> Streaming (type: GATHER) | 2 | | 12 | 16.14 3 | -> Aggregate | 2 | 1MB | 12 | 10.14 4 | -> Seq Scan on customer_address_p1 | 7 | 1MB | 4 | 10.12 Predicate Information (identified by plan id) --------------------------------------------- 4 --Seq Scan on customer_address_p1 Filter: (ca_address_sk < 10000) Outline Data ------------------------------------------------------------ /*+ begin_outline_data TableScan(@"sel$1" tpcds.customer_address_p1@"sel$1") end_outline_data */ ====== Query Summary ===== ------------------------------- System available mem: 4710400KB Query Max mem: 4710400KB Query estimated mem: 2048KB (25 rows) |