Skip to main content

A DuckDB server for SQLRooms

Project description

SQLRooms DuckDB Server

PyPi

A Python-based server that runs a local DuckDB instance and supports queries over WebSockets, returning data in either Apache Arrow or JSON format. The server was originally developed for use with SQLRooms, but can be readily used as a generic DuckDB server in other contexts.

Note: This server was initially created as a fork of Mosaic DuckDB Server, with additional features and improvements.

Note: This package provides a local DuckDB server. To instead use SQLRooms with DuckDB-WASM in the browser, stick to the default WasmDuckDbConnector.

Features

  • WebSocket endpoint (WS-only)
  • Arrow IPC results (binary framed) and JSON responses
  • Concurrent query execution using a shared thread pool (per-task cursors)
  • Per-query cancellation via duckdb.interrupt (WebSocket type:"cancel")
  • WebSocket multiplexing with queryId correlation
  • Subscribe/notify over WebSocket using Socketify publish/subscribe
  • Disk-backed result cache with per-key locking (prevents duplicate compute)
  • One-time retry on transaction conflicts (e.g., concurrent UPDATE vs ALTER)
  • Graceful shutdown (SIGINT/SIGTERM): cancel queries, FORCE CHECKPOINT, close, stop executor
  • Optional bearer authentication for HTTP and WebSocket endpoints

Installation and usage

We recommend running the server in an isolated environment with uvx. For example, to directly run the server, use:

uvx duckdb-server --db-path /absolute/path/to/my.db --port 4000 --extensions httpfs,spatial

Alternatively, you can install the server with pip install duckdb-server. Then you can start the server with duckdb-server --db-path /absolute/path/to/my.db --port 4000.

Command-line arguments

  • --db-path (optional): Path to DuckDB database file. Defaults to :memory:.

  • --port (default: 4000): Port to listen on.

  • --extensions (optional): Comma-separated list of extensions to preload. Examples:

    • httpfs
    • spatial
    • h3@community
  • --auth-token (optional): If provided, enables bearer authentication. WebSocket clients must first send { "type": "auth", "token": "<TOKEN>" }.

Examples:

# In-memory DB with httpfs only (default)
uv run duckdb-server --port 4000

# File-backed DB with multiple extensions
uv run duckdb-server --db-path /tmp/my.db --port 4000 --extensions httpfs,spatial,h3@community

Developer Setup

We use uv to manage our development setup.

Start the server with:

uv run duckdb-server --db-path /absolute/path/to/my.db

Run uv run ruff check --fix and uv run ruff format to lint the code.

To run the tests, use uv run pytest.

To set up a local certificate for SSL, use https://github.com/FiloSottile/mkcert.

API

The server supports queries via WebSockets only. Minimal HTTP endpoints are provided for health and diagnostics.

Health Endpoints (HTTP)

  • GET /healthz: returns ok when the process is healthy.
  • GET /readyz: returns ok when DuckDB is initialized; 503 otherwise.
  • GET /version: returns JSON with version info.

WebSocket

  • URL: ws://localhost:<port>/
  • Messages are JSON text frames unless returning Arrow bytes.

Authentication (optional):

  • If started with an auth token, the client must send the first message:

    {"type": "auth", "token": "<TOKEN>"}
    
  • On success, server replies { "type": "authAck" }. Any other message before auth results in an error and the connection is closed.

Supported messages:

  • Query (optional queryId):

    {"type":"arrow","sql":"select 1 as x","queryId":"q1"}
    {"type":"json","sql":"select 1 as x","queryId":"q2"}
    {"type":"exec","sql":"create table t(x int)","queryId":"q3"}
    
  • Result correlation (Arrow): binary frame

    • Layout: [4-byte big-endian length][header JSON][arrow bytes]
    • Header JSON example: { "type": "arrow", "queryId": "q1" }
  • Result correlation (JSON/OK): text frame

    {"type":"json","queryId":"q2","data":"[{\"x\":1}]"}
    {"type":"ok","queryId":"q3"}
    
  • Cancel in-flight query:

    {"type": "cancel", "queryId": "q2"}
    
    • Response: { "type":"cancelAck","queryId":"q2","cancelled":true }
    • If the query is already finishing, you may receive the final result instead of an error.
  • Subscribe/Notify (server-side notifications):

    {"type":"subscribe","channel":"table:orders"}
    {"type":"notify","channel":"table:orders","payload":{"op":"update"}}
    
    • Subscribe ack: { "type":"subscribed","channel":"table:orders" }
    • Notify:
      • Broadcast to subscribers via app.publish
      • Immediate echo to the sender: { "type":"notify","channel":"table:orders","payload":{"op":"update"} }
      • Ack: { "type":"notifyAck","channel":"table:orders" }

Concurrency & Cancellation

  • DuckDB work runs in a shared thread pool with per-task cursors.
  • Per-query cancellation is supported via duckdb.interrupt.
  • WebSocket multiplexing uses queryId correlation in headers/payloads.
  • One-time retry on transaction conflicts (e.g., concurrent UPDATE vs ALTER).

Notes

  • Graceful shutdown: SIGINT/SIGTERM cancel in-flight queries, FORCE CHECKPOINT, close connection, stop executor.
  • Auth token can be supplied via CLI --auth-token.

Publishing

Run the build with uv build. Then test publish with pnpm prerelease. We publish using tokens so when asked, set the username to __token__ and then use your token as the password. Alternatively, create a .pypirc file.

Project details


Download files

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

Source Distribution

sqlrooms_duckdb_server-0.2.1.tar.gz (114.2 kB view details)

Uploaded Source

Built Distribution

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

sqlrooms_duckdb_server-0.2.1-py3-none-any.whl (21.2 kB view details)

Uploaded Python 3

File details

Details for the file sqlrooms_duckdb_server-0.2.1.tar.gz.

File metadata

  • Download URL: sqlrooms_duckdb_server-0.2.1.tar.gz
  • Upload date:
  • Size: 114.2 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.12.11

File hashes

Hashes for sqlrooms_duckdb_server-0.2.1.tar.gz
Algorithm Hash digest
SHA256 e4efbac20364dde4bb163e03c1da25958b53a4149aa27bfc3e40dbdd0d4ef5a1
MD5 3a24d757d7d2358c1a5261594aa0a5d0
BLAKE2b-256 d6f47c27fe13d46a174f47996347921e2011cd934a45f9105a14d43bb1883b77

See more details on using hashes here.

File details

Details for the file sqlrooms_duckdb_server-0.2.1-py3-none-any.whl.

File metadata

File hashes

Hashes for sqlrooms_duckdb_server-0.2.1-py3-none-any.whl
Algorithm Hash digest
SHA256 f65c39ef16f3506cb51cc41f64dcc17a4317a0ee02934c288e0d4ca2393a97e5
MD5 4f8388d463c86e5d6b787828807d7e90
BLAKE2b-256 a8c7250b5fc918ca54b1f808fcfd94bcfc9a71d358d1672671765c8bb8692eeb

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page