Skip to main content

n6k-duckdb

In-process bridge between DuckDB connections with permission-based access control.

Install

pip install n6k-duckdb

Usage

import duckdb
from n6k_server.bridge import bridge

cfg = {"allow_unsigned_extensions": "true"}
source = duckdb.connect(config=cfg)
source.sql("CREATE TABLE users(id INTEGER, name VARCHAR)")
source.sql("INSERT INTO users VALUES (1, 'alice'), (2, 'bob')")

target = duckdb.connect(config=cfg)
bridge(source, target, "app", permissions={"users": "readwrite"})

# Query through the bridge
target.sql("SELECT * FROM app.users").show()

# Insert through the bridge (requires 'readwrite')
target.sql("INSERT INTO app.users VALUES (3, 'charlie')")

# Update and delete also work with 'readwrite'
target.sql("UPDATE app.users SET name = 'Alice' WHERE id = 1")
target.sql("DELETE FROM app.users WHERE id = 2")

Permissions

Permission Allows
'read' SELECT only
'readwrite' SELECT, INSERT, UPDATE, DELETE

Tables not listed in permissions are inaccessible.

How it works

bridge() automatically installs and loads the virtual_catalog DuckDB extension from the n6k extension repository. The extension creates an in-process bridge between two DuckDB database instances using a token-based handshake.

No network server is required — data flows directly between connections in the same process.

Server framework (optional extra)

This package also ships a reusable FastAPI framework for serving the n6k protocol — install with pip install "n6k-duckdb[test-server]".

The protocol itself is not implemented in Python. It is served by the n6k_server DuckDB extension (C++); this package accepts the WebSocket, decides which catalogs to serve, hands the socket to the extension, and shuttles bytes. It never decodes a frame.

Minimal server with a DuckDB backend:

import duckdb
from fastapi import FastAPI, WebSocket
from n6k_server.extension import load_n6k_server
from n6k_server.pump import WsReject
from n6k_server.server_fastapi.register import register

app = FastAPI()


def open_db(ws: WebSocket, **_):
    catalog = ws.query_params.get("catalog")
    if not catalog:
        raise WsReject(4400, "missing catalog")
    con = duckdb.connect(config={"allow_unsigned_extensions": "true"})
    load_n6k_server(con)
    con.execute(f'ATTACH \':memory:\' AS "{catalog}"')
    # ... populate tables in `con` ...
    return con


register(app, "", connect=open_db)

# Run: `uvicorn your_module:app --port 8099`

connect runs once per WebSocket and returns the connection to serve it from. That is the entire contract — every catalog it ATTACHed is served, and the connection's own default database (memory, for a plain duckdb.connect()) is not.

con is surrendered to the serving call for the connection's lifetime and closed on teardown, so nothing else may touch it. connect may be sync, async, or an async generator — yield when you need a hook on both ends:

async def open_db(ws):
    con = duckdb.connect()
    ...
    live[id(ws)] = con.cursor()   # a way into the data while it is being served
    try:
        yield con                 # served here; resumes when the socket drops
    finally:
        del live[id(ws)]

A worked example — auth, per-WS observability, /debug/* hooks — lives in src/n6k_server/test_server/app.py. Run it with python -m n6k_server.test_server --port 8099.

Auth

Two credentials arrive on two channels, and each is checked by whichever side can see it.

TransportAuthorization: Bearer or a query param, on the HTTP upgrade. This process terminates the upgrade, so only it can read them. Check them in connect and raise WsReject(4401, "unauthorized").

Handshake frame — where a browser must put its token, since a browser cannot set a header on a WebSocket upgrade. Define a function named n6k_authorize on the connection and the extension calls it for every handshake:

con.create_function(
    "n6k_authorize",
    lambda token, catalog: token == expected,   # or raise, to say why
    [duckdb.sqltype("VARCHAR"), duckdb.sqltype("VARCHAR")],
    duckdb.sqltype("BOOLEAN"),
)

Registering it is the whole opt-in — there is no auth setting. False refuses the session; raising sends your message to the client. Reading that token in Python would mean parsing frames, which is the extension's job.

Notifying clients of stale catalog entries

When the server's catalog state changes outside of a client's own DDL (e.g. another writer dropped a view), peers' cached table listings go stale. Call

CALL n6k_serve_push_invalidate('<catalog>', 'main')

on any connection to the same database (a cursor() of the served connection works) to send one FT_PUSH(OP_CATALOG_INVALIDATED) to every session serving that catalog; each client drops its cached entries for the named schemas and refetches on next access. It returns how many sessions it reached.

Nothing fires this automatically — the server decides when a catalog changed.

Download files

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

Source Distribution

n6k_duckdb-0.9.1.tar.gz (77.0 kB view details)

Uploaded Source

Built Distribution

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

n6k_duckdb-0.9.1-py3-none-any.whl (97.6 kB view details)

Uploaded Python 3

File details

Details for the file n6k_duckdb-0.9.1.tar.gz.

File metadata

  • Download URL: n6k_duckdb-0.9.1.tar.gz
  • Upload date:
  • Size: 77.0 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for n6k_duckdb-0.9.1.tar.gz
Algorithm Hash digest
SHA256 de759e464f4b41bf6282e4f29927f2762bb0bb42339e2e964a50fb7801301551
MD5 c6388200c9f16d1680d48359c8e59ce8
BLAKE2b-256 f5724178cfaf58dfd5fd69c06858a2407783ebd0f8ba10f0d245bd96e00c8a1d

See more details on using hashes here.

Provenance

The following attestation bundles were made for n6k_duckdb-0.9.1.tar.gz:

Publisher: release-python.yml on n6k-io/duckdb-extension

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

File details

Details for the file n6k_duckdb-0.9.1-py3-none-any.whl.

File metadata

  • Download URL: n6k_duckdb-0.9.1-py3-none-any.whl
  • Upload date:
  • Size: 97.6 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for n6k_duckdb-0.9.1-py3-none-any.whl
Algorithm Hash digest
SHA256 24268c1b90e8b506ffbba826887331b67d92be112e27bc1776ad76c79adb6194
MD5 48a0e11d9bce344da2e009636935bfd0
BLAKE2b-256 7aa79c1f6a7e8cb0defd94428243eb409d3591f8158bbd37ee0b0134b3c7725f

See more details on using hashes here.

Provenance

The following attestation bundles were made for n6k_duckdb-0.9.1-py3-none-any.whl:

Publisher: release-python.yml on n6k-io/duckdb-extension

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.9.1 This release

2 files

0.8.1

2 files

0.7.4

2 files

0.7.3

2 files

0.7.2

2 files

0.6.2

2 files

0.6.1

2 files

0.6.0

2 files

0.4.2

2 files

0.4.0

2 files

0.3.1

2 files

0.3.0

2 files

0.2.0

2 files

0.1.1

2 files

0.1.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