#1★ TOP PICK
Qdrant
Fast, open-source, one binary — the default self-hosted vector DB.
92
OPEN SOURCEApache-2.0SELF-HOSTLOCAL-FIRST
Qdrant is a high-performance vector database written in Rust and licensed Apache-2.0 — free to self-host with no usage limits or feature gates. It ships as a single self-contained binary with REST and gRPC APIs, runs via Docker or Kubernetes (official Helm chart and Operator), and offers a managed Qdrant Cloud on AWS, GCP, and Azure when you'd rather not operate it. Strong filtering, quantization, and hybrid search make it the most common 'we left Pinecone' landing spot.
Strengths
- +Apache-2.0, no feature gates — the full engine is open
- +Single Rust binary: laptop to cluster with the same API
- +Excellent metadata filtering, quantization, hybrid search
- +Managed cloud exists when you want zero ops
Trade-offs
- −Self-hosting means you own scaling and backups
- −Smaller managed-service ecosystem than Pinecone's
Free self-hosted (no limits); Qdrant Cloud managed tiers with a free 1GB cluster #2
pgvector
Vector search inside the Postgres you already run — zero new infrastructure.
94
OPEN SOURCEPostgreSQLSELF-HOSTLOCAL-FIRST
pgvector is an open-source extension (PostgreSQL license) that adds vector similarity search to PostgreSQL itself. If your app already has Postgres, this is the no-new-moving-parts answer: embeddings live next to your relational data, joins and filters are just SQL, and every major managed Postgres (RDS, Cloud SQL, Azure, Supabase, Neon) supports it. Recent releases added parallel HNSW index builds, iterative scans for filtered queries, and halfvec quantization — it now handles serious workloads, not just prototypes.
Strengths
- +No new database to operate — it's your existing Postgres
- +Vectors join directly with relational data in SQL
- +Supported by every major managed Postgres provider
- +HNSW indexes, filtered iterative scans, quantization
Trade-offs
- −Very large collections (hundreds of millions of vectors) favor a dedicated engine
- −Tuning happens in Postgres terms — indexes, memory, vacuum
Free — an extension of PostgreSQL; runs wherever your Postgres runs #3
Chroma
The fastest way to prototype RAG — embedded, local-first, Apache-2.0.
90
OPEN SOURCEApache-2.0SELF-HOSTLOCAL-FIRST
Chroma is an open-source, AI-native vector store built for developer speed: pip install, three lines of Python, and you have persistent local vector search — no server required. It persists to disk by default in its embedded mode and also runs as a client-server deployment when an app graduates from notebook to production. For prototypes, local agents, and small-to-mid RAG apps it is the lowest-friction option in the ecosystem.
Strengths
- +Embedded mode: vector search with zero infrastructure
- +First-class LangChain / LlamaIndex integration
- +Local persistence by default — data survives restarts
Trade-offs
- −Not built for large distributed production clusters
- −Fewer enterprise features than Milvus/Weaviate
Free open source; optional managed Chroma Cloud #4
Milvus
The heavy-scale distributed choice — billions of vectors, Apache-2.0.
88
OPEN SOURCEApache-2.0SELF-HOST
Milvus is a cloud-native, distributed vector database under the LF AI & Data Foundation, licensed Apache-2.0 and developed by Zilliz. It is engineered for the top end of scale — billions of vectors, horizontal scaling, tiered storage — with a managed option (Zilliz Cloud) when you want the same engine without the Kubernetes homework. If your vector workload is genuinely huge, this is the open-source engine built for it.
Strengths
- +Proven at billion-vector scale, horizontally scalable
- +LF AI & Data governance — not a single-vendor project
- +Managed escape hatch (Zilliz Cloud) with the same engine
Trade-offs
- −Distributed architecture = real operational complexity self-hosted
- −Overkill for small and mid-size workloads
Free self-hosted (Apache-2.0); Zilliz Cloud managed tiers incl. a free tier #5
Weaviate
Open-source with built-in hybrid search and a module ecosystem.
87
OPEN SOURCEBSD-3-ClauseSELF-HOST
Weaviate is an open-source (BSD-3-Clause), cloud-native vector database that stores objects and vectors together, pairing similarity search with structured filtering and strong built-in hybrid (keyword + vector) search. Its module system can handle embedding generation for you, and Weaviate Cloud offers the managed path. A polished middle ground between Qdrant's lean engine and Milvus's heavy distribution.
Strengths
- +Hybrid keyword + vector search built in
- +Modules can generate embeddings server-side
- +GraphQL and REST APIs; solid multi-tenancy
Trade-offs
- −Heavier than Qdrant for simple use cases
- −Module system adds a learning curve
Free self-hosted (BSD-3-Clause); Weaviate Cloud managed tiers