Vector databases

Flexible Vector Database is a managed retrieval store backed by OpenSearch. You choose the embedding model (text-only or multimodal), push documents in, and search by text, image, or a combination. Recommendations are a first-class feature: record a view, then ask for similar items weighted by what the user interacted with.

You need an embeddings instance

Vector databases are decoupled from inference. Create an embeddings instance first and reference its serving name when you create the database. The instance bills per active hour regardless of database activity.

Database fields

FieldNotes
idInternal database id. Used in API paths.
slugURL-safe handle. Stable across renames. Use it in client code.
nameDisplay name. Free text, can be changed at any time.
descriptionFree-text description shown in the list and detail pages.
embedding_serving_nameServing name of the embeddings instance that encodes the documents.
embedding_model_refHugging Face repo id resolved from the serving name. Read-only.
opensearch_index_nameBacking index. Read-only, managed by the platform.
statusready | provisioning | failed. Failed databases show an error message.

Where to go next