You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Add sql-jobs command to show jobs for a SQL execution
Fetches all job IDs (succeeded/failed/running) from a SQL execution and
displays their details. Uses bulk list_jobs + client-side filter for
efficiency and gracefully handles missing job IDs.
Co-authored-by: Copilot <[email protected]>
Copy file name to clipboardExpand all lines: CHANGELOG.md
+5-1Lines changed: 5 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -10,7 +10,11 @@
10
10
-`--dot` outputs the plan DAG as a Graphviz DOT file for visualization.
11
11
-`-o <file>` writes output to a file instead of stdout.
12
12
-`--json` returns structured JSON with `isAdaptive`, `sectionCount`, and parsed `sections`.
13
-
-`sql-plan` REPL command with the same options.
13
+
-**`sql-jobs` command** — Show jobs associated with a SQL execution.
14
+
- Fetches all job IDs (succeeded, failed, running) from the SQL execution.
15
+
- Displays job details in a table with status, stages, and task counts.
16
+
- Gracefully handles cases where referenced job IDs are not found.
17
+
-`sql-plan` and `sql-jobs` REPL commands with the same options.
14
18
15
19
### Changed
16
20
-**E2E CI switched to Docker-based SHS** — Uses `apache/spark:4.0.0` Docker image with `actions/cache` for faster CI runs (~5s cached load vs ~2min download).
0 commit comments