Indicizzazione IVFFlat per la velocità
Implementi indici IVFFlat in pgvector per accelerare le ricerche approximate nearest neighbor e rendere più rapide le query.
Indicizzazione IVFFlat per la velocità è una lezione Vector Databases: Pinecone, Weaviate & pgvector gratuita su CoddyKit. Questa è la lezione 1 di 4. Puoi leggere la lezione completa qui gratuitamente — poi esercitati direttamente nel browser con un editor di codice integrato e un tutor IA disponibile 24/7. Fa parte del percorso di apprendimento Vector Databases: Pinecone, Weaviate & pgvector, e i tuoi progressi si sincronizzano tra il web e l'app CoddyKit. Il corso Vector Databases: Pinecone, Weaviate & pgvector include 4 lezioni in totale.
Parti di questa lezione non sono ancora state tradotte e vengono mostrate in inglese.
Faster Searches with IVFFlat
Welcome to optimizing pgvector performance! For small datasets, a simple vector similarity query might be fast enough. But as your data grows, brute-force search becomes too slow.
This lesson introduces IVFFlat indexing, a powerful technique to accelerate Approximate Nearest Neighbor (ANN) searches in pgvector.
Why Vector Indexes are Key
Imagine searching for the closest person to you in a massive crowd. Without any organization, you'd have to check every single person.
Similarly, without an index, pgvector has to compare your query vector to every single vector in your table. This is called a brute-force search, and it's inefficient for large datasets.
- Indexes organize data.
- They make lookups much faster.
- Crucial for scalable vector search.
IVFFlat: The Core Idea
IVFFlat (Inverted File Index with Flat quantizer) is an ANN indexing algorithm. Its core idea is to group similar vectors into 'lists' or 'clusters'.
Think of it like sorting books by genre before looking for a specific title. You first pick the right genre, then search within that smaller section.
How IVFFlat Works: Two Steps
When you query an IVFFlat index, it performs a two-step process:
- Find nearest lists: It quickly identifies a few (or more) clusters that are closest to your query vector.
- Search within lists: It then only searches for nearest neighbors within those selected clusters, ignoring the rest of the dataset.
This significantly reduces the number of comparisons needed, speeding up your queries.
The `lists` Parameter Explained
When creating an IVFFlat index, the most important parameter is lists. This defines how many clusters (or partitions) your data will be divided into.
- More
lists: Each cluster has fewer vectors. This can lead to faster searches (less data to scan per cluster). - Fewer
lists: Each cluster has more vectors. Searches might be slower, but you're less likely to miss true nearest neighbors.
It's a trade-off between search speed and recall (how many of the true nearest neighbors you actually find).
Prepare Your Vector Table
Before creating an index, you need a table with a vector column. If you haven't already, ensure the vector extension is enabled.
Here's a quick setup for a table with 3-dimensional vectors:
CREATE EXTENSION IF NOT EXISTS vector;
CREATE TABLE items (
id serial PRIMARY KEY,
embedding vector(3)
);
INSERT INTO items (embedding) VALUES
('[1,2,3]'),
('[1.1,2.1,3.1]'),
('[4,5,6]'),
('[4.1,5.1,6.1]'),
('[7,8,9]'),
('[7.1,8.1,9.1]');Creating an IVFFlat Index
Now, let's create an IVFFlat index on our embedding column. We'll specify the vector_l2_ops operator class for L2 distance (Euclidean distance), and set the lists parameter.
A good starting point for lists is rows / 1000 for up to 1M rows, or sqrt(rows) for larger datasets.
CREATE INDEX ON items USING ivfflat (embedding vector_l2_ops) WITH (lists = 4);Querying with the Index
Once the IVFFlat index is created, your standard similarity queries will automatically benefit from it! pgvector will use the index to find approximate nearest neighbors much faster.
Let's find the 3 closest items to [1,2,3]:
SELECT id, embedding <-> '[1,2,3]' AS distance
FROM items
ORDER BY distance
LIMIT 3;The `probes` Query Parameter
At query time, you can further tune the search with the ivfflat.probes parameter. This setting controls how many of the nearest 'lists' (clusters) are actually searched.
- More
probes: Better recall, but slower search. - Fewer
probes: Faster search, but potentially lower recall.
The default probes value is 1. You can set it for your session:
SET ivfflat.probes = 2;
SELECT id, embedding <-> '[1,2,3]' AS distance
FROM items
ORDER BY distance
LIMIT 3;IVFFlat Indexing Check
Let's test your understanding of IVFFlat indexing.
IVFFlat: Key Takeaways
Great job! You've learned the fundamentals of IVFFlat indexing in pgvector.
- IVFFlat speeds up ANN searches by partitioning data.
- The
listsparameter (index creation) controls the number of clusters. - The
ivfflat.probesparameter (query time) controls how many clusters are searched. - Both involve a trade-off between search speed and recall.
Next, we'll explore HNSW indexing, another powerful option for even higher recall.
Domande Frequenti
La lezione «Indicizzazione IVFFlat per la velocità» è gratuita?
Sì — il testo completo di «Indicizzazione IVFFlat per la velocità» è gratuito qui sul web. Per esercitarvi in modo interattivo (un editor di codice integrato e un tutor IA 24/7) e sbloccare il resto del corso Vector Databases: Pinecone, Weaviate & pgvector, passa a CoddyKit PRO. Il corso Vector Databases: Pinecone, Weaviate & pgvector include 4 lezioni in totale.
Cosa imparerò in «Indicizzazione IVFFlat per la velocità»?
Implementi indici IVFFlat in pgvector per accelerare le ricerche approximate nearest neighbor e rendere più rapide le query. Eserciti Vector Databases: Pinecone, Weaviate & pgvector con codice pratico che esegui direttamente nel browser, e un tutor IA 24/7 risponde alle tue domande mentre lavori sulla lezione.
Ho bisogno di esperienza per iniziare Vector Databases: Pinecone, Weaviate & pgvector?
Non è richiesta alcuna esperienza precedente. Vector Databases: Pinecone, Weaviate & pgvector su CoddyKit è strutturato per principianti e studenti avanzati, quindi puoi iniziare da qui o dall'inizio e procedere al tuo ritmo. Questa è la lezione 1 di 4.
Quanto tempo richiede la lezione «Indicizzazione IVFFlat per la velocità»?
La maggior parte delle lezioni CoddyKit richiede circa 5–10 minuti. Ogni lezione è breve e interattiva, quindi fai progressi costanti e riprendi esattamente da dove hai lasciato su web e app.
Posso scrivere ed eseguire codice in questa lezione Vector Databases: Pinecone, Weaviate & pgvector?
Sì. Ogni lezione Vector Databases: Pinecone, Weaviate & pgvector include un editor di codice integrato, quindi scrivi ed esegui codice reale direttamente nel tuo browser e ricevi feedback istantaneo dall'IA — nessuna configurazione locale necessaria.
Tutte le lezioni di questo corso
- Indicizzazione IVFFlat per la velocità
- Indicizzazione HNSW per il recall
- Ottimizzare le prestazioni delle query
- Ottimizzare la ricerca filtrata