This product was not featured by Product Hunt yet. It will not be visible on their landing page and won't be ranked (cannot win product of the day regardless of upvotes).
Product upvotes vs the next 3
Waiting for data. Loading
Product comments vs the next 3
Waiting for data. Loading
Product upvote speed vs the next 3
Waiting for data. Loading
Product upvotes and comments
Waiting for data. Loading
Product vs the next 3
Loading
GalaxDB
AI-native database: SQL + vector search + training exports
Replaces PostgreSQL, Pinecone & S3 with one 7.9 MB binary. PostgreSQL wire protocol, HNSW vector search, Merkle-DAG versioning, built-in training-data dedup, and EU AI Act lineage. Apache 2.0.
Hey Product Hunt! I'm Ibrahim, the founder behind GalaxDB.
The problem
Most AI teams run 5+ separate systems: PostgreSQL for transactions, Pinecone or Qdrant for vector search, Redis for caching, S3 for training data, and a feature store for serving. Each adds latency, cost, and operational complexity. Data gets duplicated across systems, embeddings go stale, and no single system tracks lineage end-to-end.
What GalaxDB does
One 7.9 MB binary that speaks PostgreSQL wire protocol. It replaces the entire stack:
Full OLTP SQL with ACID Snapshot Isolation
HNSW vector search with auto‑embedding, no external API, no separate vector DB
Merkle‑DAG versioning with time‑travel queries and reproducible training snapshots
Training‑data export in Lance format with zero‑copy PyTorch loading and built‑in dedup via MinHash LSH
EU AI Act Article 13 compliant lineage, every training run is traceable to exact tag, filters, precision, and export hash
Benchmarks (measured on AWS c6id.4xlarge, Intel Xeon 8375C, 32 GB RAM)
258,555 writes/sec with write p99 of 377 µs under sustained compaction
0.983 recall@10 on SIFT1M matching hnswlib, in safe Rust
4.49 GB/s column scans with 80% zone‑map block skip
7,390 wire‑protocol SELECT QPS - 2.3× PostgreSQL 16
Cold‑cache point read p50: 147 µs on a 50M‑row dataset exceeding RAM
7/7 chaos scenarios passed with zero data loss
Try it in 60 seconds
pip install galaxdb-client
import galaxdb
db = galaxdb.Database("./mydata")
db.execute("""
CREATE TABLE docs (
id INT PRIMARY KEY,
text TEXT EMBEDDING MODEL 'all-MiniLM-L6-v2'
)
""")
db.execute("INSERT INTO docs VALUES (1, 'machine learning is great')")
results = db.execute(
"SELECT * FROM docs WHERE SEMANTIC_MATCH(text, 'AI', 0.7)"
)
Honest limitations (v1 is not everything yet)
Single‑row wire INSERT is slow - 454 rows/sec. Batching restores performance: 20,267 rows/sec
No secondary indexes yet - non‑PK lookups fall back to zone‑map pruning
Vector index is single‑node - distributed ANN is planned for v2
macOS and Windows are dev platforms - production performance needs Linux 5.10+ with io_uring
Links
GitHub: https://github.com/zentrix-innov...
Research paper with all benchmarks: https://doi.org/10.5281/zenodo.2...
Docs: https://galaxdb.com/docs
I would love your feedback — especially on the architecture, the benchmarks, and what you would want in v2. I will be here answering everything.
About GalaxDB on Product Hunt
“AI-native database: SQL + vector search + training exports”
GalaxDB was submitted on Product Hunt and earned 0 upvotes and 1 comments, placing #131 on the daily leaderboard. Replaces PostgreSQL, Pinecone & S3 with one 7.9 MB binary. PostgreSQL wire protocol, HNSW vector search, Merkle-DAG versioning, built-in training-data dedup, and EU AI Act lineage. Apache 2.0.
On the analytics side, GalaxDB competes within Open Source, Developer Tools, Artificial Intelligence and GitHub — topics that collectively have 1.1M followers on Product Hunt. The dashboard above tracks how GalaxDB performed against the three products that launched closest to it on the same day.
Who hunted GalaxDB?
GalaxDB was hunted by Sserunkuuma Ibrahim. A “hunter” on Product Hunt is the community member who submits a product to the platform — uploading the images, the link, and tagging the makers behind it. Hunters typically write the first comment explaining why a product is worth attention, and their followers are notified the moment they post. Around 79% of featured launches on Product Hunt are self-hunted by their makers, but a well-known hunter still acts as a signal of quality to the rest of the community. See the full all-time top hunters leaderboard to discover who is shaping the Product Hunt ecosystem.
For a complete overview of GalaxDB including community comment highlights and product details, visit the product overview.