[Alpha] Vector Database

Warning: This is an experimental feature. To our knowledge, this is stable, but there are still rough edges in the experience. Contributions are welcome!

Overview

Vector database allows user to store and retrieve embeddings. Feast provides general APIs to store and retrieve embeddings.

Integration

Below are supported vector databases and implemented features:

Vector Database
Retrieval
Indexing

Pgvector

[x]

[ ]

Elasticsearch

[x]

[x]

Milvus

[ ]

[ ]

Faiss

[ ]

[ ]

Example

See https://github.com/feast-dev/feast-workshop/blob/rag/module_4_rag for an example on how to use vector database.

Prepare offline embedding dataset

Run the following commands to prepare the embedding dataset:

python pull_states.py
python batch_score_documents.py

The output will be stored in data/city_wikipedia_summaries.csv.

Initialize Feast feature store and materialize the data to the online store

Use the feature_tore.yaml file to initialize the feature store. This will use the data as offline store, and Pgvector as online store.

Run the following command in terminal to apply the feature store configuration:

Note that when you run feast apply you are going to apply the following Feature View that we will use for retrieval later:

Then run the following command in the terminal to materialize the data to the online store:

Prepare a query embedding

Retrieve the top 5 similar documents

First create a feature store instance, and use the retrieve_online_documents API to retrieve the top 5 similar documents to the specified query.

Last updated

Was this helpful?