Skip to content

Commit

Permalink
Update sql-statements/sql-statement-explain-analyze.md
Browse files Browse the repository at this point in the history
Co-authored-by: xixirangrang <[email protected]>
  • Loading branch information
yibin87 and hfxsd authored Dec 12, 2024
1 parent 1414b1f commit 568d455
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sql-statements/sql-statement-explain-analyze.md
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ Different from `EXPLAIN`, `EXPLAIN ANALYZE` executes the corresponding SQL state
| attribute name | description |
|:----------------|:---------------------------------|
| `actRows` | Number of rows output by the operator. |
| `execution info` | Execution information of the operator. `time` represents the total `wall time` from entering the operator to leaving the operator, including the total execution time of all sub-operators. If the operator is called many times by the parent operator (in loops), then the time refers to the accumulated time. `loops` is the number of times the current operator is called by the parent operator. `open` represents the time required for operator initialization. `close` represents the time from the operator processing all data to the operator ending. The time counted by `time` includes the time of `open` and `close`. When the operator is executed concurrently, the execution information will show the sum of all used `wall time`. At this time, `time`, `open` and `close` will be replaced with `total_time`, `total_open` and `total_close`. |
| `execution info` | Execution information of the operator. `time` represents the total `wall time` from entering the operator to leaving the operator, including the total execution time of all sub-operators. If the operator is called many times by the parent operator (in loops), then the time refers to the accumulated time. `loops` is the number of times the current operator is called by the parent operator. `open` represents the time spent initializing the operator. `close` refers to the time taken from when the operator finishes processing data to when it ends. The `time` value includes both `open` and `close` time. When the operator is executed concurrently, the execution information shows the sum of all used `wall time`. In this case, `time`, `open`, and `close` are replaced with `total_time`, `total_open`, and `total_close`. |

Check warning on line 42 in sql-statements/sql-statement-explain-analyze.md

View workflow job for this annotation

GitHub Actions / vale

[vale] reported by reviewdog 🐶 [PingCAP.Ambiguous] Consider using a clearer word than 'many' because it may cause confusion. Raw Output: {"message": "[PingCAP.Ambiguous] Consider using a clearer word than 'many' because it may cause confusion.", "location": {"path": "sql-statements/sql-statement-explain-analyze.md", "range": {"start": {"line": 42, "column": 237}}}, "severity": "INFO"}
| `memory` | Max memory space occupied by the operator. |
| `disk` | Max disk space occupied by the operator. |

Expand Down

0 comments on commit 568d455

Please sign in to comment.