Skip to main content

spark-connect-cli (scq)

An agent-friendly Spark Connect CLI — read-only querying plus async control for long-running jobs.

Built for LLM agents and humans who live in a shell. Unlike spark-sql / spark-submit, the client is a thin pure-Python gRPC client: no JVM, and no Kerberos on the client side — the Spark Connect server authenticates with its own keytab, so you just point at sc://host:15002 and go.

Why

  • JSON-first, read-only by default. Safe for an agent to call for exploration; writes/DDL are blocked unless you opt in (--allow-ddl).
  • Long jobs don't block you. A multi-minute Spark job shouldn't trap an agent in a 30-minute tool call. scq submits the job, hands back a durable job id, and returns immediately. Poll it whenever you like; the handle survives a client/container restart because it lives in an on-disk registry.
  • Stable exit codes so a caller can branch without scraping text.

Install

pip install spark-connect-cli         # pulls pyspark-client (slim, no JVM jars)
# or, from source:
pip install -e .

The dependency is pyspark-client — Spark's connect-only client (~480 MB smaller than full pyspark[connect], same pyspark import). If your environment already has full pyspark installed, install this package with --no-deps to avoid the two distributions clobbering the shared module.

Quick start

export SPARK_REMOTE=sc://localhost:15002   # your Spark Connect endpoint

scq databases
scq tables mydb --like '%orders%'
scq describe mydb.orders
scq query "SELECT id, name FROM mydb.orders LIMIT 10"

Output is JSONEachRow (one JSON object per line) by default; pick another with --format json|csv|tsv|table.

Read-only guard

scq query allows only SELECT/SHOW/DESCRIBE/EXPLAIN/WITH. Anything else exits with code 3 unless you pass --allow-ddl.

exit meaning
0 success
1 query error (bad SQL)
2 connection error
3 blocked by the read-only guard
4 job-control error (no such job, …)

Async jobs (Layer A)

Long work runs detached and is tracked by a file-based registry under $SCQ_JOBS_DIR (default ~/.spark-connect-cli/jobs).

# submit — returns a job id immediately, does NOT block
scq sync ods.orders --to clickhouse
# {"job_id": "j-20260625-...", "state": "running", "message": "... poll with ..."}

scq jobs list                       # all jobs + state
scq jobs status j-20260625-...      # full status (rows, timings, pid, exit code)
scq jobs logs   j-20260625-... --tail 40
scq jobs cancel j-20260625-...      # kills the whole process group
scq jobs prune --keep-days 7        # delete old finished jobs (running ones kept)

Design: each job is a directory with meta.json (state machine: submitted → running → succeeded|failed|cancelled) and out.log. The worker runs in its own process group, so cancel kills the entire tree (no orphans). A running job whose process has vanished is reconciled to failed on the next status read, so status never lies.

Hive → ClickHouse sync

scq sync is one job kind built on the async subsystem. It uses Spark direct write: a Spark Connect job reads the Hive table and writes to ClickHouse over JDBC. The write runs on the executors, so rows never pass through this process or the agent.

Modes control write parallelism — single (one connection, small tables), parallel (N partitions, large tables), auto (picks by row count).

Requires:

  • clickhouse-jdbc on the Spark Connect server classpath (/opt/spark/jars/),
  • cluster→ClickHouse network egress,
  • a JDBC URL with credentials via --ch-jdbc / $SCQ_CH_JDBC,
  • the target ClickHouse table created beforehand with a suitable engine. Auto-create (--order-by/--engine) is best-effort only: Spark's generic JDBC dialect has been observed failing to create ClickHouse tables, after which the insert dies with Code: 60 (UNKNOWN_TABLE). Create the table first, e.g. with the chsql skill.

Introspection

scq meta db.table            # one JSON: schema, created time, location,
                             # partitions, file count/size, mtime range
scq meta db.table --count    # also run an exact count(*)

scq exec stages?status=active            # read-only Spark REST passthrough
scq exec executors
scq exec stages/<id>/<attempt>/taskSummary?quantiles=0.5,0.95,1.0   # skew: max/median

scq exec auto-discovers the running Spark app via the YARN ResourceManager and proxies its monitoring REST API (GET-only). Set the RM base with $SCQ_YARN_RM.

Reading scq exec executors — the maxMemory field is Spark's storage/cache pool ((heap − 300 MB reserved) × 0.6), not the executor's total memory: a 512 MB executor reports ~93 MB, a 1536 MB driver ~741 MB. The real heap is spark.executor.memory (+ off-heap overhead). The driver row has 0 cores and runs no tasks. With dynamic allocation, idle executors are released — so the list may show only the driver when nothing is running.

Configuration

env default meaning
SPARK_REMOTE sc://localhost:15002 Spark Connect endpoint
SCQ_JOBS_DIR ~/.spark-connect-cli/jobs job registry (put on a persistent volume)
SCQ_MAX_ROWS 10000 default row cap for query
SCQ_CONNECT_TIMEOUT 10 seconds to wait for the endpoint's TCP socket before failing with exit 2 (keeps a dead endpoint from hanging the caller)
SCQ_CH_JDBC ClickHouse JDBC URL for sync path A
SCQ_YARN_RM — (required for scq exec) YARN RM base, e.g. http://rm-host:8088

Use with an LLM agent

SKILL.md ships a ready-made skill (discover-before-query workflow, async-job etiquette, type-mapping table). Drop it into your agent's skills directory and the agent drives scq through a shell/Bash tool.

Roadmap

  • scq cluster — optional read-only passthrough to the YARN ResourceManager REST (apps / queues / nodes), rounding out the introspection plane.
  • Vendored/offline install path (bundle wheels) for air-gapped deployments.

License

MIT

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

spark_connect_cli-0.3.2.tar.gz (23.3 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

spark_connect_cli-0.3.2-py3-none-any.whl (25.9 kB view details)

Uploaded Python 3

File details

Details for the file spark_connect_cli-0.3.2.tar.gz.

File metadata

  • Download URL: spark_connect_cli-0.3.2.tar.gz
  • Upload date:
  • Size: 23.3 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for spark_connect_cli-0.3.2.tar.gz
Algorithm Hash digest
SHA256 c818e920fa9694ebd76d332fd3f3ac4e47531793a6ab2feaf62e7ce4b80344d5
MD5 4ccc2c1a6cdd394af372353a357b8947
BLAKE2b-256 4afae7d5e16f0db5bdd29261e7970d22101d81eb186849bd2694f56e05fc9025

See more details on using hashes here.

Provenance

The following attestation bundles were made for spark_connect_cli-0.3.2.tar.gz:

Publisher: publish.yml on dengshu2/spark-connect-cli

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file spark_connect_cli-0.3.2-py3-none-any.whl.

File metadata

File hashes

Hashes for spark_connect_cli-0.3.2-py3-none-any.whl
Algorithm Hash digest
SHA256 31510e3064cfb1c60dfd120c2b862e27a026990e7f6eb4dfc75e713ebb46a005
MD5 d9da502f24dc93da8665ea7221d9d514
BLAKE2b-256 85c5092663df66c5974360b28fa37d4f9bc9b0924ca57d05223ae35cb283eaec

See more details on using hashes here.

Provenance

The following attestation bundles were made for spark_connect_cli-0.3.2-py3-none-any.whl:

Publisher: publish.yml on dengshu2/spark-connect-cli

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Release history Release notifications | RSS feed

This release

0.3.2 This release

2 files

0.3.1

2 files

0.3.0

2 files

0.2.2

2 files

0.2.1

2 files

0.2.0

2 files

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page