Stay organized with collections
Save and categorize content based on your preferences.
This page shows you how to use AlloyDB as a vector database with
the vector extension that includes pgvector functions and operators. These
functions and operators let you store embeddings as vector values.
Required database extension
Use the vector extension, version 0.5.0.google-1 or later, which includes
pgvector functions and operators, to store generated embeddings as vector values. This
is a version of pgvector that Google has extended with optimizations specific
to AlloyDB.
CREATEEXTENSIONIFNOTEXISTSvector;
Store generated embeddings
Ensure that you have already created a table in your AlloyDB database.
To store vector embeddings, do the following:
Create a vector[] column in your table to store your embeddings:
[[["Easy to understand","easyToUnderstand","thumb-up"],["Solved my problem","solvedMyProblem","thumb-up"],["Other","otherUp","thumb-up"]],[["Hard to understand","hardToUnderstand","thumb-down"],["Incorrect information or sample code","incorrectInformationOrSampleCode","thumb-down"],["Missing the information/samples I need","missingTheInformationSamplesINeed","thumb-down"],["Other","otherDown","thumb-down"]],["Last updated 2025-04-02 UTC."],[[["AlloyDB can be used as a vector database by utilizing the `vector` extension, which includes `pgvector` functions and operators to store embeddings as vector values."],["To use this feature, ensure you install the `vector` extension, version `0.5.0.google-1` or later, optimized for AlloyDB, by running `CREATE EXTENSION IF NOT EXISTS vector;`."],["You can store embeddings in an existing AlloyDB table by adding a `vector[]` column, specifying the number of dimensions supported by the model being used, and copying the vectors into this column from a CSV file or using `AlloyDBVectorStore` for LangChain integration."],["After storing vector data, consider creating indexes using the `vector` or `alloydb_scann` extension for enhanced query performance."],["The AlloyDB ScaNN index is currently in preview and subject to Pre-GA Offerings Terms, with features available \"as is\" and having potentially limited support."]]],[]]