Managed PostgreSQL

Hanzo SQL

Managed PostgreSQL 18

Full ACID compliance, 100+ extensions, connection pooling, and automated backups. pgvector for embeddings. Logical replication. Zero downtime upgrades.

PG 18
Latest
ACID
Compliant
100+
Extensions
HA
Failover

PostgreSQL, Fully Managed

Focus on your queries, not your database operations.

pgvector

Store and query embeddings natively. HNSW and IVFFlat indexes. Perfect for AI applications.

Connection Pooling

Built-in PgBouncer. Handle thousands of connections without overloading PostgreSQL.

Branching

Create database branches for development and testing. Instant copy-on-write clones.

Automated Backups

Continuous WAL archiving. Point-in-time recovery to any second. Cross-region replication.

Query Insights

pg_stat_statements integration. Identify slow queries, index suggestions, and lock contention.

High Availability

Streaming replication with automatic failover. Read replicas for horizontal scaling.

Standard PostgreSQL. Nothing Custom.

schema.sql
-- Enable vector extension
CREATE EXTENSION IF NOT EXISTS vector;

-- Store embeddings alongside your data
CREATE TABLE documents (
  id         BIGSERIAL PRIMARY KEY,
  content    TEXT NOT NULL,
  embedding  vector(1536),
  metadata   JSONB DEFAULT '{}',
  created_at TIMESTAMPTZ DEFAULT NOW()
);

-- HNSW index for fast similarity search
CREATE INDEX ON documents
  USING hnsw (embedding vector_cosine_ops);

-- Query with standard SQL
SELECT content, 1 - (embedding <=> $1) AS similarity
FROM documents
ORDER BY embedding <=> $1
LIMIT 10;
Open Source Revenue Sharing

25% of compute goes back to open source

Every deployment is SBOM-verified. Contributors to PostgreSQL earn a share of compute revenue — transparent, on-chain, and customizable by the community.

Your Data, Rock Solid

Free tier includes 1 GB storage and 1M row reads/month.

Open source

License: PostgreSQLhanzoai/sql

Get SQL

Managed PostgreSQL