apps/docs/content/guides/storage/vector/introduction.mdx
Expect rapid changes, limited features, and possible breaking updates. Share feedback as we refine the experience and expand access.
</Admonition>Vector buckets enable efficient storage and similarity search of vector embeddings. Built on S3-compatible storage, they provide high-performance semantic search capabilities for AI and machine learning applications.
Vector buckets are specialized storage containers optimized for vector data. Unlike traditional databases optimized for transactional queries, vector buckets use specialized indexing and distance metrics to perform fast similarity searches across millions of embeddings.
Each vector bucket contains:
Vector buckets excel at:
Vector buckets share similarities to pgvector and matches the developer experience of using pgvector as much as possible, but Vector buckets and any Foreign Data Wrappers (FDW) they use only support one similarity search algorithm, the <===> distance operator.
This makes Vector buckets ideal for:
And pgvector is ideal for:
The system automatically handles indexing and optimization, making searches fast and reliable even with millions of vectors.
Get started by learning how to create vector buckets or dive into storing vectors.