Skip to content

Commit 18c205b

Browse files
yaooqinnCopilot
andcommitted
Release v1.2.0: sql-jobs and summary commands
Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
1 parent c4edcac commit 18c205b

3 files changed

Lines changed: 15 additions & 2 deletions

File tree

CHANGELOG.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,18 @@
11
# Changelog
22

3+
## [1.2.0] - 2025-03-19
4+
5+
### Added
6+
- **`sql-jobs` command** — Show jobs associated with a SQL execution.
7+
- Fetches all job IDs (succeeded, failed, running) from the SQL execution.
8+
- Uses bulk `list_jobs` + client-side filter for efficiency.
9+
- Gracefully handles missing job IDs (e.g., Gluten/Velox native engine apps).
10+
- **`summary` command** — Concise application overview in a single view.
11+
- Application info: name, status, duration, Spark version, master, user.
12+
- Resource config: driver/executor memory & cores, shuffle partitions, serializer.
13+
- Workload stats: jobs, stages, tasks, SQL executions with status breakdowns.
14+
- `sql-jobs` and `summary` REPL commands.
15+
316
## [1.1.0] - 2025-03-19
417

518
### Added

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
setup(
44
name="spark-history-cli",
5-
version="1.1.0",
5+
version="1.2.0",
66
description="CLI for querying the Apache Spark History Server REST API",
77
long_description=open("README.md").read(),
88
long_description_content_type="text/markdown",

spark_history_cli/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
"""spark-history-cli: A CLI for querying the Apache Spark History Server REST API."""
22

3-
__version__ = "1.1.0"
3+
__version__ = "1.2.0"

0 commit comments

Comments
 (0)