Skip to main content

SQLRooms DuckDB websocket server runtime

Project description

SQLRooms 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
  • Optional sync (CRDT) over WebSocket (Loro), with snapshots stored either in the main DB or an attached DuckDB file

Installation and usage

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

uvx sqlrooms-server

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

Compatibility:

  • sqlrooms-server is provided as an alias console script for backward compatibility.

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>" }.

  • --sync (optional): Enables the optional sync (CRDT) module. When enabled, the server maintains per-room Loro CRDT docs, persists snapshots, and exposes CRDT WebSocket messages alongside the existing query protocol.

  • --meta-namespace (default: __sqlrooms): Namespace where SQLRooms meta tables are stored (UI state + CRDT snapshots). If --meta-db is provided, this is the ATTACH alias; otherwise it is a schema in the main DB.

  • --meta-db (optional): If provided, attaches this DuckDB file under --meta-namespace and stores meta tables there. If omitted, creates/uses the --meta-namespace schema within the main DB.

Examples:

# In-memory DB with httpfs only (default)
uv run sqlrooms-server

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

# Enable sync using a schema within the main DB
uv run sqlrooms-server --db-path /tmp/my.db --sync

# Enable sync and store meta tables in a dedicated attached DuckDB file
uv run sqlrooms-server --db-path /tmp/my.db --sync --meta-db /tmp/my-meta.db --meta-namespace meta

Developer Setup

We use uv to manage our development setup.

Start the server with:

uv run sqlrooms-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" }

Optional sync (CRDT) (requires --sync)

  • Join a room and receive server snapshot:

    {"type": "crdt-join", "roomId": "room-1"}
    
    • Responses: { "type":"crdt-joined","roomId":"room-1" } and { "type":"crdt-snapshot","roomId":"room-1","data":"<base64>" }
  • Send binary Loro updates after joining. The server imports them into its LoroDoc, exports a normalized update, broadcasts to the room, and persists a snapshot to the meta storage. Ack: { "type":"crdt-update-ack","roomId":"room-1" }

Notes:

  • Sync is off by default; enabled only when --sync is provided.
  • If --meta-db is provided, meta tables (including sync snapshots) are stored in that attached DuckDB file (attached under --meta-namespace).
  • If --meta-db is not provided, meta tables are stored in the main DuckDB under the --meta-namespace schema.

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_server-0.1.1.tar.gz (28.7 kB view details)

Uploaded Source

Built Distribution

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

sqlrooms_server-0.1.1-py3-none-any.whl (36.6 kB view details)

Uploaded Python 3

File details

Details for the file sqlrooms_server-0.1.1.tar.gz.

File metadata

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

File hashes

Hashes for sqlrooms_server-0.1.1.tar.gz
Algorithm Hash digest
SHA256 5249d9baca2bd2f5dba327a3029bce3c296e47133015d0470c4f7347da1ea8d6
MD5 33f05c5b893c312bec1bc243ad639e0b
BLAKE2b-256 5b7b03106afe187c1c079311ed1300d71b5f0ebc6eaf74b68ce3bd0149438175

See more details on using hashes here.

File details

Details for the file sqlrooms_server-0.1.1-py3-none-any.whl.

File metadata

File hashes

Hashes for sqlrooms_server-0.1.1-py3-none-any.whl
Algorithm Hash digest
SHA256 ddf67db8342d9c32faa0444ba8d5ca50df5990b1924ea29bf5ca3fc8af9d89b0
MD5 ecc4c3ddc00f5634be1c2cace727c3ee
BLAKE2b-256 53646e06ef2781594e3369c55d1c7890b737ff059d0cab305e26c91d28fab4d4

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