Skip to main content

GalaxDB Python client -- SQL, vector search, and local embeddings in one database

Project description

galaxdb-client

The Python client for GalaxDB -- an AI-native database that combines SQL, vector search, and local embeddings in a single binary.

No external API keys. No separate vector database. No data pipeline. One connection string.

Installation

pip install galaxdb-client

Requires Python 3.9+. Pre-built wheels for Linux x86_64, macOS Intel, macOS Apple Silicon, and Windows x86_64.

What GalaxDB gives you

  • Full SQL -- CREATE, INSERT, UPDATE, DELETE, SELECT with WHERE filters
  • Local embeddings -- text to vector conversion runs inside the process, no API key needed
  • Semantic search -- SEMANTIC_MATCH(col, 'query', threshold) in any WHERE clause; add LIMIT n for the n nearest matches
  • Semantic caching -- CREATE SEMANTIC CACHE FOR TABLE t SIMILARITY 0.98 TTL 300 serves near-identical queries from cache
  • HNSW vector index -- recall@10 = 0.990 on SIFT-1M at ef=200, persisted across restart (no re-embed)
  • DiskANN -- opt-in disk-resident (Vamana) index for larger-than-RAM vector sets
  • Time-travel queries -- SELECT ... AT VERSION 'tag', including exact historical vector search with CONSISTENCY 'SEMANTIC_SNAPSHOT'
  • Serializable isolation -- opt-in Serializable Snapshot Isolation on top of the default snapshot isolation
  • Training export -- CREATE VERSION TAG ... FOR TRAINING exports a Lance dataset, zero-copy PyTorch-ready
  • Near-dedup -- WHERE NOT DUPLICATE removes near-duplicate rows using MinHash LSH
  • Crash safety -- WAL + checksum, 7 chaos scenarios pass in under 11 seconds
  • Encryption at rest -- AES-256-GCM on every block and WAL record

Quick start -- embedded mode (no server)

import galaxdb

# Open or create a database at a local path
db = galaxdb.Database("/tmp/mydb")

# Create a table
db.execute("CREATE TABLE products (id INT PRIMARY KEY, name TEXT, price INT)")

# Insert rows
db.execute("INSERT INTO products (id, name, price) VALUES (1, 'Laptop', 1200)")
db.execute("INSERT INTO products (id, name, price) VALUES (2, 'Headphones', 150)")
db.execute("INSERT INTO products (id, name, price) VALUES (3, 'Keyboard', 80)")

# Query with filter
rows = db.execute("SELECT * FROM products WHERE price > 100")
for row in rows:
    print(row)
# {'id': '1', 'name': 'Laptop', 'price': '1200'}
# {'id': '2', 'name': 'Headphones', 'price': '150'}

# Update
db.execute("UPDATE products SET price = 1100 WHERE id = 1")

# Delete
db.execute("DELETE FROM products WHERE id = 3")

# Table info
print(db.table_exists("products"))  # True
print(db.table_count)               # 1

Semantic search with local embeddings

Start the server with the embedding sidecar to enable SEMANTIC_MATCH:

galaxdb-server \
  --data-dir ./data \
  --port 5433 \
  --sidecar /usr/local/bin/galaxdb-sidecar \
  --model sentence-transformers/all-MiniLM-L6-v2

Then connect from Python:

import galaxdb

conn = galaxdb.connect("host=localhost port=5433 dbname=galaxdb sslmode=disable")

# Create a table with an embedding column
conn.execute("""
    CREATE TABLE docs (
        id   INT PRIMARY KEY,
        body TEXT EMBEDDING MODEL 'sentence-transformers/all-MiniLM-L6-v2' DIM 384
    )
""")

# Insert rows -- embeddings are computed automatically by the local sidecar
conn.execute("INSERT INTO docs (id, body) VALUES (1, 'machine learning and neural networks')")
conn.execute("INSERT INTO docs (id, body) VALUES (2, 'rust programming language systems')")
conn.execute("INSERT INTO docs (id, body) VALUES (3, 'cooking recipes italian pasta')")
conn.execute("INSERT INTO docs (id, body) VALUES (4, 'deep learning transformers attention')")

# Semantic search -- no external API, no separate vector DB
rows = conn.execute(
    "SELECT id, body FROM docs WHERE SEMANTIC_MATCH(body, 'artificial intelligence', 0.4)"
)
for row in rows:
    print(row)
# Returns rows 1 and 4 -- the AI/ML related documents

# SEMANTIC_MATCH is a top-k search. Without a LIMIT it returns the 10
# nearest matches; add LIMIT to control how many come back:
rows = conn.execute(
    "SELECT id, body FROM docs WHERE SEMANTIC_MATCH(body, 'artificial intelligence', 0.3) LIMIT 50"
)

conn.close()

Time-travel queries

# Create a named snapshot
conn.execute("CREATE VERSION TAG 'v1' FOR TRAINING WITH TRAINING PRECISION 'float32'")

# Insert more data after the snapshot
conn.execute("INSERT INTO docs (id, body) VALUES (5, 'new document added later')")

# Query the snapshot -- only sees data from before the tag
rows = conn.execute("SELECT * FROM docs AT VERSION 'v1'")
# Returns rows 1-4, not row 5

Training export

import galaxdb
import lance
import torch

db = galaxdb.Database("./data")

# Create a training snapshot
db.execute("CREATE VERSION TAG 'train-v1' FOR TRAINING WITH TRAINING PRECISION 'float32'")

# Export as a Lance dataset
path = db.training_dataset("train-v1")

# Load into PyTorch -- zero-copy, memory-mapped
dataset = lance.dataset(path).to_pytorch()
loader = torch.utils.data.DataLoader(dataset, batch_size=32)

Bulk insert

conn.execute("""
    BULK INSERT INTO products (id, name, price) VALUES
      (10, 'Monitor', 400),
      (11, 'Mouse', 30),
      (12, 'Webcam', 90)
""")

Near-duplicate deduplication

# Select only unique documents (one per near-duplicate cluster)
rows = conn.execute("SELECT * FROM docs WHERE NOT DUPLICATE")

Backup and restore

conn.execute("BACKUP TO '/path/to/backup'")
conn.execute("RESTORE FROM '/path/to/backup'")

Server mode -- connect to a running GalaxDB server

import galaxdb

# Connect using a PostgreSQL-style connection string
conn = galaxdb.connect("host=localhost port=5433 dbname=galaxdb sslmode=disable")

conn.execute("CREATE TABLE users (id INT PRIMARY KEY, name TEXT, age INT)")
conn.execute("INSERT INTO users (id, name, age) VALUES (1, 'Alice', 30)")

rows = conn.execute("SELECT * FROM users WHERE age > 25")
for row in rows:
    print(row)

conn.close()

Any PostgreSQL client works -- psycopg2, SQLAlchemy, tokio-postgres, pg (Node.js), JDBC.

Docker

docker run -d -p 5433:5433 -p 9090:9090 \
  -v /data:/data \
  -v ~/.cache/huggingface:/root/.cache/huggingface \
  harbi256/galaxdb:latest \
  --data-dir /data \
  --sidecar /usr/local/bin/galaxdb-sidecar \
  --model sentence-transformers/all-MiniLM-L6-v2

Observability

# Health check
curl http://localhost:9090/health
# {"status":"ok","version":"0.7.0","subsystems":{"sidecar_healthy":true}}

# Prometheus metrics
curl http://localhost:9090/metrics

Links

License

Apache 2.0

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

galaxdb_client-0.7.0.tar.gz (738.6 kB view details)

Uploaded Source

Built Distributions

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

galaxdb_client-0.7.0-cp312-cp312-manylinux_2_28_x86_64.whl (29.0 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ x86-64

galaxdb_client-0.7.0-cp312-cp312-manylinux_2_28_aarch64.whl (27.2 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ ARM64

galaxdb_client-0.7.0-cp311-cp311-win_amd64.whl (25.5 MB view details)

Uploaded CPython 3.11Windows x86-64

galaxdb_client-0.7.0-cp311-cp311-macosx_11_0_arm64.whl (24.4 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

galaxdb_client-0.7.0-cp311-cp311-macosx_10_12_x86_64.whl (26.1 MB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

File details

Details for the file galaxdb_client-0.7.0.tar.gz.

File metadata

  • Download URL: galaxdb_client-0.7.0.tar.gz
  • Upload date:
  • Size: 738.6 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.13.5

File hashes

Hashes for galaxdb_client-0.7.0.tar.gz
Algorithm Hash digest
SHA256 1139c2a506f6d5a56f8effc8d1c0e28c968087f128c7e5349d50a4da7dfb6b79
MD5 78d7c0e19cb4763648875c2f27f3a1bc
BLAKE2b-256 21c937ca38af8660cb645c383187466783a348487c26b4b13f7db8997afea257

See more details on using hashes here.

File details

Details for the file galaxdb_client-0.7.0-cp312-cp312-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for galaxdb_client-0.7.0-cp312-cp312-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 f035132c8fce5f3613a51a4b9331ff600d4908928299efe5b3cbf71f472af02c
MD5 02f5e32c7907aa3ee143b318da9a26be
BLAKE2b-256 d01895f241032d9ae3fa354d14a14804a6977fba39ce250eb15eba4052b80028

See more details on using hashes here.

File details

Details for the file galaxdb_client-0.7.0-cp312-cp312-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for galaxdb_client-0.7.0-cp312-cp312-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 da91190d6308213adacd1339715ac72f6dc4ba86482504311d7f83a66e75c10a
MD5 3ad29f9764e2b117c4120f1dbfae9f94
BLAKE2b-256 e92193399d6338709c3ffa97b45d4c43a6eb0b15b3f54fa2d7b2922c7e710cd8

See more details on using hashes here.

File details

Details for the file galaxdb_client-0.7.0-cp311-cp311-win_amd64.whl.

File metadata

File hashes

Hashes for galaxdb_client-0.7.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 e6c7df0fcd17bbba5364ef46fff46a722bef4c695fec6b9f5fbe9d8c7293cddd
MD5 34462ddf85651937722e9bcdbfdaf0cc
BLAKE2b-256 d0fa8e2d0e3543818f0123e10bd77d91cf8807b6ee0f34ee17cfcbd2b91eec75

See more details on using hashes here.

File details

Details for the file galaxdb_client-0.7.0-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for galaxdb_client-0.7.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a0e6b7338d590d7d26fd8ca1077457f011c798bdfeb188bc18272c4117953953
MD5 b3dc20897456a4ef958d7a5819025d37
BLAKE2b-256 0d8621b8e22eeda3092d9a21858cf363b265606ac3cf4474b987b9b5bb44f8ff

See more details on using hashes here.

File details

Details for the file galaxdb_client-0.7.0-cp311-cp311-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for galaxdb_client-0.7.0-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 ee944e73884a4f4ddccdb56507f60ce0578b4172cd1c0018c864bb29a4951506
MD5 2ea73684b51195f0eeb4a1d5c5895589
BLAKE2b-256 c6e357a9219c843c2c46f5c2a7093c92770aba8812e299ec6608621b1c65dbe3

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