UMHLAHLANDLELA Wobuchwepheshe

Vector Database

A vector database stores numerical representations and retrieves records using a similarity measure, often alongside metadata filters.

2 amaminithi ukufundaIgcine ukubuyekezwa Part of the Building with AI Systems learning path

Uhlolojikelele

It can support semantic search, recommendations, and retrieval for AI applications. It does not independently establish the truth, permission, or usefulness of a retrieved record.

Okuthathwayo okubalulekile

  • Version embeddings with their source and model.
  • Evaluate approximation against task relevance.
  • Treat deletion and permissions as first-class requirements.

I-Deep Dive

An embedding model maps an item such as a passage or image into a vector. The database indexes those vectors so a query representation can retrieve nearby items. Keep the original content, source identifier, and relevant metadata available with the vector. The embedding model and similarity measure must be compatible with the application. Changing the model can change the meaning or dimensions of stored representations. A migration may require recomputing embeddings and rebuilding an index rather than mixing old and new vectors. Exact nearest-neighbor search compares candidates directly, while approximate methods trade some retrieval fidelity for speed or memory efficiency. Evaluate the tradeoff using representative queries and the actual collection size. Database latency alone does not measure the relevance of the returned evidence. Plan updates, deletion, and authorization as part of the design. A removed document should not remain discoverable through an old embedding. Metadata filters need to enforce the requesting user’s permitted scope. Test concurrent updates and fallback behavior when the index is unavailable.

I-Technical Insight

The nearest vector depends on the representation and distance function. A smaller numerical distance is not a universal confidence score or probability of correctness.

Plan an embedding-model migration

  1. Imagine an index built with model A and a new query service using model B.
  2. Even if both produce the same number of dimensions, their coordinate meanings need not match. Mixing them can make similarity results meaningless.
  3. Build a separately versioned index using model B, evaluate it, and switch queries only after validating the complete migration.

The constructed scenario shows why embedding versioning is part of data integrity.

I-Strategic Impact

Izindleko kanye nesabelomali

Izinqumo zezakhiwo ziqhuba ukusebenza kanye nezindleko zokusebenza iminyaka.

Izinqumo ezicacile

Imfundo yobuchwepheshe isiza amaqembu ukuthi akhethe isitaki esifanele, hhayi nje esisha.

Ukulawulwa kwekhwalithi

Izinketho ezingcono zobunjiniyela zinciphisa izehlakalo ezinokwethenjelwa ekukhiqizeni.

Ukuqaliswa Komhlaba Wangempela

Retrieve related passages while preserving document permissions and source links.

Compare exact and approximate retrieval on a held-out query set.

Izingozi & Guardrails

Ukuthuthukisa ibhentshimakhi eyodwa kungafihla ubuthakathaka obubanzi besistimu.

Izindleko zengqalasizinda nezokulungisa zivame ukubukelwa phansi.

Izikhala zokuphepha nokubonakala zingakhula njengoba izinhlelo ziba nzima kakhulu.

Ukuqalisa Umhlahlandlela

1

Chaza ukubambezeleka, ikhwalithi, nezindleko ezihlosiwe ngaphambi kokuqaliswa.

2

Ibhentshimakhi ngaphansi komthwalo wangempela nezimo zedatha.

3

Ukuqapha amathuluzi amaphutha, ukukhukhuleka, nomthelela wabasebenzisi.

4

Lungiselela izindlela zokuhlehlisa nezigameko ngaphambi kokukala.

Imithombo nokufunda okuqhubekayo

Qhubeka Uhlole

Free newsletter

Get the daily AI briefing

Three verified AI stories every weekday morning, written in plain English. Free forever, no ads.

One email each weekday. Unsubscribe in one click. We never sell or share your address.

Test yourself

Take the Vector Databases quiz

Instant feedback on every answer, and a shareable certificate with a verifiable ID once you pass a course.

Qala imibuzo

Support free AI education. AI Understanding is a 501(c)(3) nonprofit — no ads, no paywall, ever. Make a donation

Next in Building with AI Systems

Ukushumeka

Imibuzo evame ukubuzwa

Can I change embedding models without rebuilding stored vectors?

Not safely by assumption. Representations from different models may be incompatible even when their dimensions match.