Skip to content

Fast, SQL powered, in-process vector search for any language with an SQLite driver

License

Notifications You must be signed in to change notification settings

RapidAI/vectorlite

Β 
Β 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 

Repository files navigation

NPM Version PyPI - Version

Overview

Vectorlite is a Runtime-loadable extension for SQLite that enables fast vector search based on hnswlib and works on Windows, MacOS and Linux. It provides fast vector search capabilities with a SQL interface and runs on every language with a SQLite driver.

For motivation and background of this project, please check here.

Below is an example of using it in sqlite CLI shell:

-- Load vectorlite
.load path/to/vectorlite.[so|dll|dylib]
-- shows vectorlite version and build info.
select vectorlite_info(); 
-- Calculate vector l2(squared) distance
select vector_distance(vector_from_json('[1,2,3]'), vector_from_json('[3,4,5]'), 'l2');
-- Create a virtual table named my_table with one vector column my_embedding with dimention of 3
create virtual table my_table using vectorlite(my_embedding float32[3], hnsw(max_elements=100));
-- Insert vectors into my_table. rowid can be used to relate to a vector's metadata stored elsewhere, e.g. another table.
insert into my_table(rowid, my_embedding) values (0, vector_from_json('[1,2,3]'));
insert into my_table(rowid, my_embedding) values (1, vector_from_json('[2,3,4]'));
insert into my_table(rowid, my_embedding) values (2, vector_from_json('[7,7,7]'));
-- Find 2 approximate nearest neighbors of vector [3,4,5] with distances
select rowid, distance from my_table where knn_search(my_embedding, knn_param(vector_from_json('[3,4,5]'), 2));
-- Find the nearest neighbor of vector [3,4,5] among vectors with rowid 0 and 1. (requires sqlite_version>=3.38)
-- It is called metadata filter in vectorlite, because you could get rowid set beforehand based on vectors' metadata and then perform vector search.
-- Metadata filter is pushed down to the underlying index when traversing the HNSW graph.
select rowid, distance from my_table where knn_search(my_embedding, knn_param(vector_from_json('[3,4,5]'), 1)) and rowid in (0, 1) ;

Currently, vectorlite is pre-compiled for Windows-x64, Linux-x64, MacOS-x64, MacOS-arm64 and distributed as python wheels and npm packages. It can be installed simply by:

# For python
pip install vectorlite-py
# for nodejs
npm i vectorlite

For other languages, vectorlite.[so|dll|dylib] can be extracted from the wheel for your platform, given that a *.whl file is actually a zip archive.

Vectorlite is currently in beta. There could be breaking changes.

Highlights

  1. Fast ANN(approximate nearest neighbors) search backed by hnswlib. Vector query is significantly faster than similar projects like sqlite-vec and sqlite-vss. Please see benchmark below.
  2. Works on Windows, Linux and MacOS(x64 and ARM).
  3. A fast and portable SIMD accelerated vector distance implementation using Google's highway library. On my PC(i5-12600KF with AVX2 support), vectorlite's implementation is 1.5x-3x faster than hnswlib's when dealing vectors with dimension >= 256.
  4. Supports all vector distance types provided by hnswlib: l2(squared l2), cosine, ip(inner product. I do not recomend you to use it though). For more info please check hnswlib's doc.
  5. Full control over HNSW parameters for performance tuning. Please check this example.
  6. Predicate pushdown support for vector metadata(rowid) filter (requires sqlite version >= 3.38). Please check this example;
  7. Index serde support. A vectorlite table can be saved to a file, and be reloaded from it. Index files created by hnswlib can also be loaded by vectorlite. Please check this example;
  8. Vector json serde support using vector_from_json() and vector_to_json().

API reference

Vectorlite provides the following APIs. Please note vectorlite is currently in beta. There could be breaking changes.

Free-standing Application Defined SQL functions

The following functions can be used in any context.

vectorlite_info() -- prints version info and some compile time info. e.g. Is SSE, AVX enabled.
vector_from_json(json_string) -- converts a json array of type TEXT into BLOB(a c-style float32 array)
vector_to_json(vector_blob) -- converts a vector of type BLOB(c-style float32 array) into a json array of type TEXT
vector_distance(vector_blob1, vector_blob2, distance_type_str) -- calculate vector distance between two vectors, distance_type_str could be 'l2', 'cosine', 'ip' 

In fact, one can easily implement brute force searching using vector_distance, which returns 100% accurate search results:

-- use a normal sqlite table
create table my_table(rowid integer primary key, embedding blob);

-- insert 
insert into my_table(rowid, embedding) values (0, {your_embedding});
-- search for 10 nearest neighbors using l2 squared distance
select rowid from my_table order by vector_distance({query_vector}, embedding, 'l2') asc limit 10

Virtual Table

The core of vectorlite is the virtual table module, which is used to hold vector index and way faster than brute force approach at the cost of not being 100% accurate. A vectorlite table can be created using:

-- Required fields: table_name, vector_name, dimension, max_elements
-- Optional fields:
-- 1. distance_type: defaults to l2
-- 2. ef_construction: defaults to 200
-- 3. M: defaults to 16
-- 4. random_seed: defaults to 100
-- 5. allow_replace_deleted: defaults to true
-- 6. index_file_path: no default value. If not provided, the table will be memory-only. If provided, vectorlite will try to load index from the file and save to it when db connection is closed.
create virtual table {table_name} using vectorlite({vector_name} float32[{dimension}] {distance_type}, hnsw(max_elements={max_elements}, {ef_construction=200}, {M=16}, {random_seed=100}, {allow_replace_deleted=true}), {index_file_path});

You can insert, update and delete a vectorlite table as if it's a normal sqlite table.

-- rowid is required during insertion, because rowid is used to connect the vector to its metadata stored elsewhere. Auto-generating rowid doesn't makes sense.
insert into my_vectorlite_table(rowid, vector_name) values ({your_rowid}, {vector_blob});
-- Note: update and delete statements that uses rowid filter require sqlite3_version >= 3.38 to run.  
update my_vectorlite_table set vector_name = {new_vector_blob} where rowid = {your_rowid};
delete from my_vectorlite_table where rowid = {your_rowid};

The following functions should be only used when querying a vectorlite table

-- returns knn_parameter that will be passed to knn_search(). 
-- vector_blob: vector to search
-- k: how many nearest neighbors to search for
-- ef: optional. A HNSW parameter that controls speed-accuracy trade-off. Defaults to 10 at first. If set to another value x, it will remain x if not specified again in another query within a single db connection.
knn_param(vector_blob, k, ef)
-- Should only be used in the `where clause` in a `select` statement to tell vectorlite to speed up the query using HNSW index
-- vector_name should match the vectorlite table's definition
-- knn_parameter is usually constructed using knn_param()
knn_search(vector_name, knn_parameter)
-- An example of vector search query. `distance` is an implicit column of a vectorlite table.
select rowid, distance from my_vectorlite_table where knn_search(vector_name, knn_param({vector_blob}, {k}))
-- An example of vector search query with pushed-down metadata(rowid) filter, requires sqlite_version >= 3.38 to run.
select rowid, distance from my_vectorlite_table where knn_search(vector_name, knn_param({vector_blob}, {k})) and rowid in (1,2,3,4,5)

Benchmark

Please note only small datasets(with 3000 or 20000 vectors) are used because it would be unfair to benchmark against sqlite-vec using larger datasets. Sqlite-vec only uses brute-force, which doesn't scale with large datasets, while vectorlite uses ANN(approximate nearest neighbors), which scales to large datasets at the cost of not being 100% accurate.

How the benchmark is done:

  1. Insert 3000/20000 randomly-generated vectors of dimension 128,512,1536 and 3000 into a vectorlite table with HNSW parameters ef_construction=100, M=30.
  2. Randomly generate 100 vectors and then query the table with them for 10 nearest neighbors with ef=10,50,100 to see how ef impacts recall rate.
  3. Calculate recall rate by comparing the result with the neighbors calculated using brute force.
  4. vectorlite_scalar_brute_force(which is just inserting vectors into a normal sqlite table and do select rowid from my_table order by vector_distance(query_vector, embedding, 'l2') limit 10) is benchmarked as the baseline to see how much hnsw speeds up vector query.
  5. hnswlib is also benchmarked to see how much cost SQLite adds to vectorlite. The benchmark is run in WSL on my PC with a i5-12600KF intel CPU and 16G RAM.

TL;DR:

  1. Vectorlite's vector query is 3x-100x faster than sqlite-vec at the cost of lower recall rate. The difference gets larger when the dataset size grows, which is expected because sqlite-vec only supports brute force.
  2. Surprisingly, vectorlite_scalar_brute_force's vector query is about 1.5x faster for vectors with dimension >= 512 but slower than sqlite-vec for 128d vectors. vectorlite_scalar_brute_force's vector insertion is 3x-8x faster than sqlite-vec.
  3. Compared with hnswlib, vectorlite provides almost identical recall rate. Vector query speed with L2 distance is on par with 128d vectors and is 1.5x faster when dealing with 3000d vectors. Mainly because vectorlite's vector distance implementation is faster. But vectorlite's vector insertion is about 4x-5x slower, which I guess is the cost added by SQLite.
  4. Compared with brute force baseline(vectorlite_scalar_brute_force), vectorlite's knn query is 8x-80x faster.

The benchmark code can be found in benchmark folder, which can be used as an example of how to improve recall rate for your scenario by tuning HNSW parameters.

3000 vectors

When dealing with 3000 vectors(which is a fairly small dataset):

  1. Compared with sqlite-vec, vectorlite's vector query can be 3x-15x faster with 128-d vectors, 6x-26x faster with 512-d vectors, 7x-30x faster with 1536-d vectors and 6x-24x faster with 3000-d vectors. But vectorlite's vector insertion is 6x-16x slower, which is expected because sqlite-vec uses brute force only and doesn't do much indexing.
  2. Compared with vectorlite_scalar_brute_force, hnsw provides about 10x-40x speed up.
  3. Compared with hnswlib, vectorlite provides almost identical recall rate. Vector query speed is on par with 128d vectors and is 1.5x faster when dealing with 3000d vectors. Mainly because vectorlite's vector distance implementation is faster. But vector insertion is about 4x-5x slower.
  4. vectorlite_scalar_brute_force's vector insertion 4x-7x is faster than sqlite-vec, and vector query is about 1.7x faster when dealing with vectors of dimension >= 512.

vecter insertion vector query

Check raw data
Using local vectorlite: ../build/release/vectorlite/vectorlite.so
Benchmarking using 3000 randomly vectors. 100 10-nearest neighbor queries will be performed on each case.
┏━━━━━━━━━━┳━━━━━━━━━━━┳━━━━━━━━━━━━━━┳━━━━┳━━━━━━━━┳━━━━━━━━━━━━━┳━━━━━━━━━━━━━┳━━━━━━━━┓
┃ distance ┃ vector    ┃ ef           ┃    ┃ ef     ┃ insert_time ┃ search_time ┃ recall ┃
┃ type     ┃ dimension ┃ construction ┃ M  ┃ search ┃ per vector  ┃ per query   ┃ rate   ┃
┑━━━━━━━━━━╇━━━━━━━━━━━╇━━━━━━━━━━━━━━╇━━━━╇━━━━━━━━╇━━━━━━━━━━━━━╇━━━━━━━━━━━━━╇━━━━━━━━┩
β”‚ l2       β”‚ 128       β”‚ 100          β”‚ 30 β”‚ 10     β”‚ 62.41 us    β”‚ 12.96 us    β”‚ 56.40% β”‚
β”‚ l2       β”‚ 128       β”‚ 100          β”‚ 30 β”‚ 50     β”‚ 62.41 us    β”‚ 42.95 us    β”‚ 93.30% β”‚
β”‚ l2       β”‚ 128       β”‚ 100          β”‚ 30 β”‚ 100    β”‚ 62.41 us    β”‚ 62.06 us    β”‚ 99.40% β”‚
β”‚ l2       β”‚ 512       β”‚ 100          β”‚ 30 β”‚ 10     β”‚ 146.40 us   β”‚ 38.05 us    β”‚ 46.60% β”‚
β”‚ l2       β”‚ 512       β”‚ 100          β”‚ 30 β”‚ 50     β”‚ 146.40 us   β”‚ 95.96 us    β”‚ 86.50% β”‚
β”‚ l2       β”‚ 512       β”‚ 100          β”‚ 30 β”‚ 100    β”‚ 146.40 us   β”‚ 148.46 us   β”‚ 96.70% β”‚
β”‚ l2       β”‚ 1536      β”‚ 100          β”‚ 30 β”‚ 10     β”‚ 463.56 us   β”‚ 124.51 us   β”‚ 38.10% β”‚
β”‚ l2       β”‚ 1536      β”‚ 100          β”‚ 30 β”‚ 50     β”‚ 463.56 us   β”‚ 355.70 us   β”‚ 78.50% β”‚
β”‚ l2       β”‚ 1536      β”‚ 100          β”‚ 30 β”‚ 100    β”‚ 463.56 us   β”‚ 547.84 us   β”‚ 92.70% β”‚
β”‚ l2       β”‚ 3000      β”‚ 100          β”‚ 30 β”‚ 10     β”‚ 1323.25 us  β”‚ 391.57 us   β”‚ 36.60% β”‚
β”‚ l2       β”‚ 3000      β”‚ 100          β”‚ 30 β”‚ 50     β”‚ 1323.25 us  β”‚ 1041.37 us  β”‚ 78.60% β”‚
β”‚ l2       β”‚ 3000      β”‚ 100          β”‚ 30 β”‚ 100    β”‚ 1323.25 us  β”‚ 1443.10 us  β”‚ 93.10% β”‚
β”‚ cosine   β”‚ 128       β”‚ 100          β”‚ 30 β”‚ 10     β”‚ 59.75 us    β”‚ 15.27 us    β”‚ 58.30% β”‚
β”‚ cosine   β”‚ 128       β”‚ 100          β”‚ 30 β”‚ 50     β”‚ 59.75 us    β”‚ 36.72 us    β”‚ 94.60% β”‚
β”‚ cosine   β”‚ 128       β”‚ 100          β”‚ 30 β”‚ 100    β”‚ 59.75 us    β”‚ 63.67 us    β”‚ 99.30% β”‚
β”‚ cosine   β”‚ 512       β”‚ 100          β”‚ 30 β”‚ 10     β”‚ 148.19 us   β”‚ 36.98 us    β”‚ 51.00% β”‚
β”‚ cosine   β”‚ 512       β”‚ 100          β”‚ 30 β”‚ 50     β”‚ 148.19 us   β”‚ 102.46 us   β”‚ 88.10% β”‚
β”‚ cosine   β”‚ 512       β”‚ 100          β”‚ 30 β”‚ 100    β”‚ 148.19 us   β”‚ 143.41 us   β”‚ 96.90% β”‚
β”‚ cosine   β”‚ 1536      β”‚ 100          β”‚ 30 β”‚ 10     β”‚ 427.21 us   β”‚ 106.94 us   β”‚ 42.10% β”‚
β”‚ cosine   β”‚ 1536      β”‚ 100          β”‚ 30 β”‚ 50     β”‚ 427.21 us   β”‚ 285.50 us   β”‚ 83.30% β”‚
β”‚ cosine   β”‚ 1536      β”‚ 100          β”‚ 30 β”‚ 100    β”‚ 427.21 us   β”‚ 441.66 us   β”‚ 95.60% β”‚
β”‚ cosine   β”‚ 3000      β”‚ 100          β”‚ 30 β”‚ 10     β”‚ 970.17 us   β”‚ 289.00 us   β”‚ 42.20% β”‚
β”‚ cosine   β”‚ 3000      β”‚ 100          β”‚ 30 β”‚ 50     β”‚ 970.17 us   β”‚ 848.03 us   β”‚ 83.90% β”‚
β”‚ cosine   β”‚ 3000      β”‚ 100          β”‚ 30 β”‚ 100    β”‚ 970.17 us   β”‚ 1250.29 us  β”‚ 95.60% β”‚
β””β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”΄β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”΄β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”΄β”€β”€β”€β”€β”΄β”€β”€β”€β”€β”€β”€β”€β”€β”΄β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”΄β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”΄β”€β”€β”€β”€β”€β”€β”€β”€β”˜
Bencharmk hnswlib as comparison.
┏━━━━━━━━━━┳━━━━━━━━━━━┳━━━━━━━━━━━━━━┳━━━━┳━━━━━━━━┳━━━━━━━━━━━━━┳━━━━━━━━━━━━━┳━━━━━━━━┓
┃ distance ┃ vector    ┃ ef           ┃    ┃ ef     ┃ insert_time ┃ search_time ┃ recall ┃
┃ type     ┃ dimension ┃ construction ┃ M  ┃ search ┃ per vector  ┃ per query   ┃ rate   ┃
┑━━━━━━━━━━╇━━━━━━━━━━━╇━━━━━━━━━━━━━━╇━━━━╇━━━━━━━━╇━━━━━━━━━━━━━╇━━━━━━━━━━━━━╇━━━━━━━━┩
β”‚ l2       β”‚ 128       β”‚ 100          β”‚ 30 β”‚ 10     β”‚ 12.84 us    β”‚ 12.83 us    β”‚ 56.90% β”‚
β”‚ l2       β”‚ 128       β”‚ 100          β”‚ 30 β”‚ 50     β”‚ 12.84 us    β”‚ 41.93 us    β”‚ 93.60% β”‚
β”‚ l2       β”‚ 128       β”‚ 100          β”‚ 30 β”‚ 100    β”‚ 12.84 us    β”‚ 65.84 us    β”‚ 99.40% β”‚
β”‚ l2       β”‚ 512       β”‚ 100          β”‚ 30 β”‚ 10     β”‚ 29.34 us    β”‚ 47.37 us    β”‚ 47.00% β”‚
β”‚ l2       β”‚ 512       β”‚ 100          β”‚ 30 β”‚ 50     β”‚ 29.34 us    β”‚ 126.29 us   β”‚ 86.40% β”‚
β”‚ l2       β”‚ 512       β”‚ 100          β”‚ 30 β”‚ 100    β”‚ 29.34 us    β”‚ 198.30 us   β”‚ 96.80% β”‚
β”‚ l2       β”‚ 1536      β”‚ 100          β”‚ 30 β”‚ 10     β”‚ 90.05 us    β”‚ 149.35 us   β”‚ 37.20% β”‚
β”‚ l2       β”‚ 1536      β”‚ 100          β”‚ 30 β”‚ 50     β”‚ 90.05 us    β”‚ 431.53 us   β”‚ 78.00% β”‚
β”‚ l2       β”‚ 1536      β”‚ 100          β”‚ 30 β”‚ 100    β”‚ 90.05 us    β”‚ 765.03 us   β”‚ 92.50% β”‚
β”‚ l2       β”‚ 3000      β”‚ 100          β”‚ 30 β”‚ 10     β”‚ 388.87 us   β”‚ 708.98 us   β”‚ 36.30% β”‚
β”‚ l2       β”‚ 3000      β”‚ 100          β”‚ 30 β”‚ 50     β”‚ 388.87 us   β”‚ 1666.87 us  β”‚ 78.90% β”‚
β”‚ l2       β”‚ 3000      β”‚ 100          β”‚ 30 β”‚ 100    β”‚ 388.87 us   β”‚ 2489.98 us  β”‚ 93.40% β”‚
β”‚ cosine   β”‚ 128       β”‚ 100          β”‚ 30 β”‚ 10     β”‚ 10.90 us    β”‚ 11.14 us    β”‚ 58.10% β”‚
β”‚ cosine   β”‚ 128       β”‚ 100          β”‚ 30 β”‚ 50     β”‚ 10.90 us    β”‚ 37.39 us    β”‚ 94.30% β”‚
β”‚ cosine   β”‚ 128       β”‚ 100          β”‚ 30 β”‚ 100    β”‚ 10.90 us    β”‚ 62.45 us    β”‚ 99.40% β”‚
β”‚ cosine   β”‚ 512       β”‚ 100          β”‚ 30 β”‚ 10     β”‚ 25.46 us    β”‚ 38.92 us    β”‚ 50.70% β”‚
β”‚ cosine   β”‚ 512       β”‚ 100          β”‚ 30 β”‚ 50     β”‚ 25.46 us    β”‚ 109.84 us   β”‚ 87.90% β”‚
β”‚ cosine   β”‚ 512       β”‚ 100          β”‚ 30 β”‚ 100    β”‚ 25.46 us    β”‚ 151.00 us   β”‚ 97.10% β”‚
β”‚ cosine   β”‚ 1536      β”‚ 100          β”‚ 30 β”‚ 10     β”‚ 77.53 us    β”‚ 119.48 us   β”‚ 42.00% β”‚
β”‚ cosine   β”‚ 1536      β”‚ 100          β”‚ 30 β”‚ 50     β”‚ 77.53 us    β”‚ 340.78 us   β”‚ 84.00% β”‚
β”‚ cosine   β”‚ 1536      β”‚ 100          β”‚ 30 β”‚ 100    β”‚ 77.53 us    β”‚ 510.02 us   β”‚ 95.50% β”‚
β”‚ cosine   β”‚ 3000      β”‚ 100          β”‚ 30 β”‚ 10     β”‚ 234.79 us   β”‚ 453.12 us   β”‚ 43.20% β”‚
β”‚ cosine   β”‚ 3000      β”‚ 100          β”‚ 30 β”‚ 50     β”‚ 234.79 us   β”‚ 1380.79 us  β”‚ 83.80% β”‚
β”‚ cosine   β”‚ 3000      β”‚ 100          β”‚ 30 β”‚ 100    β”‚ 234.79 us   β”‚ 1520.92 us  β”‚ 95.70% β”‚
β””β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”΄β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”΄β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”΄β”€β”€β”€β”€β”΄β”€β”€β”€β”€β”€β”€β”€β”€β”΄β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”΄β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”΄β”€β”€β”€β”€β”€β”€β”€β”€β”˜
Bencharmk vectorlite brute force(select rowid from my_table order by vector_distance(query_vector, embedding, 'l2')) as comparison.
┏━━━━━━━━━━┳━━━━━━━━━━━┳━━━━━━━━━━━━━┳━━━━━━━━━━━━━┳━━━━━━━━━┓
┃ distance ┃ vector    ┃ insert_time ┃ search_time ┃ recall  ┃
┃ type     ┃ dimension ┃ per vector  ┃ per query   ┃ rate    ┃
┑━━━━━━━━━━╇━━━━━━━━━━━╇━━━━━━━━━━━━━╇━━━━━━━━━━━━━╇━━━━━━━━━┩
β”‚ l2       β”‚ 128       β”‚ 2.38 us     β”‚ 299.14 us   β”‚ 100.00% β”‚
β”‚ l2       β”‚ 512       β”‚ 3.69 us     β”‚ 571.19 us   β”‚ 100.00% β”‚
β”‚ l2       β”‚ 1536      β”‚ 4.86 us     β”‚ 2237.64 us  β”‚ 100.00% β”‚
β”‚ l2       β”‚ 3000      β”‚ 7.69 us     β”‚ 5135.63 us  β”‚ 100.00% β”‚
β””β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”΄β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”΄β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”΄β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”΄β”€β”€β”€β”€β”€β”€β”€β”€β”€β”˜
Bencharmk sqlite_vss as comparison.
┏━━━━━━━━━━┳━━━━━━━━━━━┳━━━━━━━━━━━━━┳━━━━━━━━━━━━━┳━━━━━━━━━┓
┃ distance ┃ vector    ┃ insert_time ┃ search_time ┃ recall  ┃
┃ type     ┃ dimension ┃ per vector  ┃ per query   ┃ rate    ┃
┑━━━━━━━━━━╇━━━━━━━━━━━╇━━━━━━━━━━━━━╇━━━━━━━━━━━━━╇━━━━━━━━━┩
β”‚ l2       β”‚ 128       β”‚ 395.24 us   β”‚ 2508.52 us  β”‚ 99.90%  β”‚
β”‚ l2       β”‚ 512       β”‚ 2824.89 us  β”‚ 1530.77 us  β”‚ 100.00% β”‚
β”‚ l2       β”‚ 1536      β”‚ 8931.72 us  β”‚ 1602.36 us  β”‚ 100.00% β”‚
β”‚ l2       β”‚ 3000      β”‚ 17498.60 us β”‚ 3142.38 us  β”‚ 100.00% β”‚
β””β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”΄β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”΄β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”΄β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”΄β”€β”€β”€β”€β”€β”€β”€β”€β”€β”˜
Bencharmk sqlite_vec as comparison.
┏━━━━━━━━━━┳━━━━━━━━━━━┳━━━━━━━━━━━━━┳━━━━━━━━━━━━━┳━━━━━━━━━┓
┃ distance ┃ vector    ┃ insert_time ┃ search_time ┃ recall  ┃
┃ type     ┃ dimension ┃ per vector  ┃ per query   ┃ rate    ┃
┑━━━━━━━━━━╇━━━━━━━━━━━╇━━━━━━━━━━━━━╇━━━━━━━━━━━━━╇━━━━━━━━━┩
β”‚ l2       β”‚ 128       β”‚ 10.21 us    β”‚ 202.05 us   β”‚ 100.00% β”‚
β”‚ l2       β”‚ 512       β”‚ 14.43 us    β”‚ 989.64 us   β”‚ 100.00% β”‚
β”‚ l2       β”‚ 1536      β”‚ 31.68 us    β”‚ 3856.08 us  β”‚ 100.00% β”‚
β”‚ l2       β”‚ 3000      β”‚ 59.94 us    β”‚ 9503.91 us  β”‚ 100.00% β”‚
β””β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”΄β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”΄β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”΄β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”΄β”€β”€β”€β”€β”€β”€β”€β”€β”€β”˜

20000 vectors

When dealing with 20000 vectors,

  1. Compared with sqlite-vec, vectorlite's vector query can be 8x-100x faster depending on vector dimension.
  2. Compared with vectorlite_scalar_brute_force, hnsw provides about 8x-80x speed up with reduced recall rate at 13.8%-85% depending on vector dimension.
  3. Compared with hnswlib, vectorlite provides almost identical recall rate. Vector query is on par with 128d vectors and can be 1.5x faster with 3000d vectors. But vector insertion is 3x-9x slower.
  4. vectorlite_scalar_brute_force's vector insertion is 4x-8x faster than sqlite-vec. sqlite-vec's vector query is 1.5x faster with 128d vectors and 1.8x slower when vector dimension>=512.

Please note:

  1. sqlite-vss is not benchmarked with 20000 vectors because its index creation takes so long that it doesn't finish in hours.
  2. sqlite-vec's vector query is benchmarked and included in the raw data, but not plotted in the figure because it's search time is disproportionally long.

vecter insertion vector query

Check raw data
Using local vectorlite: ../build/release/vectorlite/vectorlite.so
Benchmarking using 20000 randomly vectors. 100 10-neariest neighbor queries will be performed on each case.
┏━━━━━━━━━━┳━━━━━━━━━━━┳━━━━━━━━━━━━━━┳━━━━┳━━━━━━━━┳━━━━━━━━━━━━━┳━━━━━━━━━━━━━┳━━━━━━━━┓
┃ distance ┃ vector    ┃ ef           ┃    ┃ ef     ┃ insert_time ┃ search_time ┃ recall ┃
┃ type     ┃ dimension ┃ construction ┃ M  ┃ search ┃ per vector  ┃ per query   ┃ rate   ┃
┑━━━━━━━━━━╇━━━━━━━━━━━╇━━━━━━━━━━━━━━╇━━━━╇━━━━━━━━╇━━━━━━━━━━━━━╇━━━━━━━━━━━━━╇━━━━━━━━┩
β”‚ l2       β”‚ 128       β”‚ 100          β”‚ 30 β”‚ 10     β”‚ 187.41 us   β”‚ 46.58 us    β”‚ 29.10% β”‚
β”‚ l2       β”‚ 128       β”‚ 100          β”‚ 30 β”‚ 50     β”‚ 187.41 us   β”‚ 95.16 us    β”‚ 70.20% β”‚
β”‚ l2       β”‚ 128       β”‚ 100          β”‚ 30 β”‚ 100    β”‚ 187.41 us   β”‚ 179.51 us   β”‚ 85.70% β”‚
β”‚ l2       β”‚ 512       β”‚ 100          β”‚ 30 β”‚ 10     β”‚ 820.80 us   β”‚ 105.80 us   β”‚ 18.10% β”‚
β”‚ l2       β”‚ 512       β”‚ 100          β”‚ 30 β”‚ 50     β”‚ 820.80 us   β”‚ 361.83 us   β”‚ 50.40% β”‚
β”‚ l2       β”‚ 512       β”‚ 100          β”‚ 30 β”‚ 100    β”‚ 820.80 us   β”‚ 628.88 us   β”‚ 67.00% β”‚
β”‚ l2       β”‚ 1536      β”‚ 100          β”‚ 30 β”‚ 10     β”‚ 2665.31 us  β”‚ 292.39 us   β”‚ 13.70% β”‚
β”‚ l2       β”‚ 1536      β”‚ 100          β”‚ 30 β”‚ 50     β”‚ 2665.31 us  β”‚ 1069.47 us  β”‚ 42.40% β”‚
β”‚ l2       β”‚ 1536      β”‚ 100          β”‚ 30 β”‚ 100    β”‚ 2665.31 us  β”‚ 1744.79 us  β”‚ 59.50% β”‚
β”‚ l2       β”‚ 3000      β”‚ 100          β”‚ 30 β”‚ 10     β”‚ 5236.76 us  β”‚ 558.56 us   β”‚ 13.80% β”‚
β”‚ l2       β”‚ 3000      β”‚ 100          β”‚ 30 β”‚ 50     β”‚ 5236.76 us  β”‚ 1787.83 us  β”‚ 39.30% β”‚
β”‚ l2       β”‚ 3000      β”‚ 100          β”‚ 30 β”‚ 100    β”‚ 5236.76 us  β”‚ 3039.94 us  β”‚ 56.60% β”‚
β”‚ cosine   β”‚ 128       β”‚ 100          β”‚ 30 β”‚ 10     β”‚ 164.31 us   β”‚ 25.35 us    β”‚ 34.70% β”‚
β”‚ cosine   β”‚ 128       β”‚ 100          β”‚ 30 β”‚ 50     β”‚ 164.31 us   β”‚ 78.33 us    β”‚ 71.20% β”‚
β”‚ cosine   β”‚ 128       β”‚ 100          β”‚ 30 β”‚ 100    β”‚ 164.31 us   β”‚ 133.75 us   β”‚ 87.60% β”‚
β”‚ cosine   β”‚ 512       β”‚ 100          β”‚ 30 β”‚ 10     β”‚ 711.35 us   β”‚ 100.90 us   β”‚ 19.00% β”‚
β”‚ cosine   β”‚ 512       β”‚ 100          β”‚ 30 β”‚ 50     β”‚ 711.35 us   β”‚ 406.08 us   β”‚ 51.10% β”‚
β”‚ cosine   β”‚ 512       β”‚ 100          β”‚ 30 β”‚ 100    β”‚ 711.35 us   β”‚ 582.51 us   β”‚ 71.50% β”‚
β”‚ cosine   β”‚ 1536      β”‚ 100          β”‚ 30 β”‚ 10     β”‚ 2263.96 us  β”‚ 283.88 us   β”‚ 22.60% β”‚
β”‚ cosine   β”‚ 1536      β”‚ 100          β”‚ 30 β”‚ 50     β”‚ 2263.96 us  β”‚ 919.98 us   β”‚ 54.50% β”‚
β”‚ cosine   β”‚ 1536      β”‚ 100          β”‚ 30 β”‚ 100    β”‚ 2263.96 us  β”‚ 1674.77 us  β”‚ 72.40% β”‚
β”‚ cosine   β”‚ 3000      β”‚ 100          β”‚ 30 β”‚ 10     β”‚ 4541.09 us  β”‚ 566.31 us   β”‚ 19.80% β”‚
β”‚ cosine   β”‚ 3000      β”‚ 100          β”‚ 30 β”‚ 50     β”‚ 4541.09 us  β”‚ 1672.82 us  β”‚ 49.30% β”‚
β”‚ cosine   β”‚ 3000      β”‚ 100          β”‚ 30 β”‚ 100    β”‚ 4541.09 us  β”‚ 2855.43 us  β”‚ 65.40% β”‚
β””β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”΄β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”΄β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”΄β”€β”€β”€β”€β”΄β”€β”€β”€β”€β”€β”€β”€β”€β”΄β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”΄β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”΄β”€β”€β”€β”€β”€β”€β”€β”€β”˜
Bencharmk hnswlib as comparison.
┏━━━━━━━━━━┳━━━━━━━━━━━┳━━━━━━━━━━━━━━┳━━━━┳━━━━━━━━┳━━━━━━━━━━━━━┳━━━━━━━━━━━━━┳━━━━━━━━┓
┃ distance ┃ vector    ┃ ef           ┃    ┃ ef     ┃ insert_time ┃ search_time ┃ recall ┃
┃ type     ┃ dimension ┃ construction ┃ M  ┃ search ┃ per vector  ┃ per query   ┃ rate   ┃
┑━━━━━━━━━━╇━━━━━━━━━━━╇━━━━━━━━━━━━━━╇━━━━╇━━━━━━━━╇━━━━━━━━━━━━━╇━━━━━━━━━━━━━╇━━━━━━━━┩
β”‚ l2       β”‚ 128       β”‚ 100          β”‚ 30 β”‚ 10     β”‚ 23.06 us    β”‚ 39.96 us    β”‚ 29.60% β”‚
β”‚ l2       β”‚ 128       β”‚ 100          β”‚ 30 β”‚ 50     β”‚ 23.06 us    β”‚ 75.02 us    β”‚ 69.80% β”‚
β”‚ l2       β”‚ 128       β”‚ 100          β”‚ 30 β”‚ 100    β”‚ 23.06 us    β”‚ 160.01 us   β”‚ 85.40% β”‚
β”‚ l2       β”‚ 512       β”‚ 100          β”‚ 30 β”‚ 10     β”‚ 146.58 us   β”‚ 167.31 us   β”‚ 18.10% β”‚
β”‚ l2       β”‚ 512       β”‚ 100          β”‚ 30 β”‚ 50     β”‚ 146.58 us   β”‚ 392.12 us   β”‚ 50.80% β”‚
β”‚ l2       β”‚ 512       β”‚ 100          β”‚ 30 β”‚ 100    β”‚ 146.58 us   β”‚ 781.50 us   β”‚ 67.20% β”‚
β”‚ l2       β”‚ 1536      β”‚ 100          β”‚ 30 β”‚ 10     β”‚ 657.41 us   β”‚ 298.71 us   β”‚ 12.70% β”‚
β”‚ l2       β”‚ 1536      β”‚ 100          β”‚ 30 β”‚ 50     β”‚ 657.41 us   β”‚ 1031.61 us  β”‚ 40.60% β”‚
β”‚ l2       β”‚ 1536      β”‚ 100          β”‚ 30 β”‚ 100    β”‚ 657.41 us   β”‚ 1764.34 us  β”‚ 57.90% β”‚
β”‚ l2       β”‚ 3000      β”‚ 100          β”‚ 30 β”‚ 10     β”‚ 1842.77 us  β”‚ 852.88 us   β”‚ 13.80% β”‚
β”‚ l2       β”‚ 3000      β”‚ 100          β”‚ 30 β”‚ 50     β”‚ 1842.77 us  β”‚ 2905.57 us  β”‚ 39.60% β”‚
β”‚ l2       β”‚ 3000      β”‚ 100          β”‚ 30 β”‚ 100    β”‚ 1842.77 us  β”‚ 4936.35 us  β”‚ 56.50% β”‚
β”‚ cosine   β”‚ 128       β”‚ 100          β”‚ 30 β”‚ 10     β”‚ 19.25 us    β”‚ 23.27 us    β”‚ 34.20% β”‚
β”‚ cosine   β”‚ 128       β”‚ 100          β”‚ 30 β”‚ 50     β”‚ 19.25 us    β”‚ 72.66 us    β”‚ 71.40% β”‚
β”‚ cosine   β”‚ 128       β”‚ 100          β”‚ 30 β”‚ 100    β”‚ 19.25 us    β”‚ 134.11 us   β”‚ 87.60% β”‚
β”‚ cosine   β”‚ 512       β”‚ 100          β”‚ 30 β”‚ 10     β”‚ 112.80 us   β”‚ 106.90 us   β”‚ 22.70% β”‚
β”‚ cosine   β”‚ 512       β”‚ 100          β”‚ 30 β”‚ 50     β”‚ 112.80 us   β”‚ 341.23 us   β”‚ 54.20% β”‚
β”‚ cosine   β”‚ 512       β”‚ 100          β”‚ 30 β”‚ 100    β”‚ 112.80 us   β”‚ 609.93 us   β”‚ 72.40% β”‚
β”‚ cosine   β”‚ 1536      β”‚ 100          β”‚ 30 β”‚ 10     β”‚ 615.04 us   β”‚ 268.00 us   β”‚ 22.50% β”‚
β”‚ cosine   β”‚ 1536      β”‚ 100          β”‚ 30 β”‚ 50     β”‚ 615.04 us   β”‚ 898.82 us   β”‚ 54.00% β”‚
β”‚ cosine   β”‚ 1536      β”‚ 100          β”‚ 30 β”‚ 100    β”‚ 615.04 us   β”‚ 1557.51 us  β”‚ 71.90% β”‚
β”‚ cosine   β”‚ 3000      β”‚ 100          β”‚ 30 β”‚ 10     β”‚ 1425.49 us  β”‚ 546.18 us   β”‚ 20.60% β”‚
β”‚ cosine   β”‚ 3000      β”‚ 100          β”‚ 30 β”‚ 50     β”‚ 1425.49 us  β”‚ 2008.53 us  β”‚ 49.20% β”‚
β”‚ cosine   β”‚ 3000      β”‚ 100          β”‚ 30 β”‚ 100    β”‚ 1425.49 us  β”‚ 3106.51 us  β”‚ 65.00% β”‚
β””β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”΄β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”΄β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”΄β”€β”€β”€β”€β”΄β”€β”€β”€β”€β”€β”€β”€β”€β”΄β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”΄β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”΄β”€β”€β”€β”€β”€β”€β”€β”€β”˜
Bencharmk vectorlite brute force(select rowid from my_table order by vector_distance(query_vector, embedding, 'l2')) as comparison.
┏━━━━━━━━━━┳━━━━━━━━━━━┳━━━━━━━━━━━━━┳━━━━━━━━━━━━━┳━━━━━━━━━┓
┃ distance ┃ vector    ┃ insert_time ┃ search_time ┃ recall  ┃
┃ type     ┃ dimension ┃ per vector  ┃ per query   ┃ rate    ┃
┑━━━━━━━━━━╇━━━━━━━━━━━╇━━━━━━━━━━━━━╇━━━━━━━━━━━━━╇━━━━━━━━━┩
β”‚ l2       β”‚ 128       β”‚ 0.93 us     β”‚ 2039.69 us  β”‚ 100.00% β”‚
β”‚ l2       β”‚ 512       β”‚ 2.73 us     β”‚ 7177.23 us  β”‚ 100.00% β”‚
β”‚ l2       β”‚ 1536      β”‚ 4.64 us     β”‚ 17163.25 us β”‚ 100.00% β”‚
β”‚ l2       β”‚ 3000      β”‚ 6.62 us     β”‚ 25378.79 us β”‚ 100.00% β”‚
β””β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”΄β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”΄β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”΄β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”΄β”€β”€β”€β”€β”€β”€β”€β”€β”€β”˜
Bencharmk sqlite_vec as comparison.
┏━━━━━━━━━━┳━━━━━━━━━━━┳━━━━━━━━━━━━━┳━━━━━━━━━━━━━┳━━━━━━━━━┓
┃ distance ┃ vector    ┃ insert_time ┃ search_time ┃ recall  ┃
┃ type     ┃ dimension ┃ per vector  ┃ per query   ┃ rate    ┃
┑━━━━━━━━━━╇━━━━━━━━━━━╇━━━━━━━━━━━━━╇━━━━━━━━━━━━━╇━━━━━━━━━┩
β”‚ l2       β”‚ 128       β”‚ 3.49 us     β”‚ 1560.17 us  β”‚ 100.00% β”‚
β”‚ l2       β”‚ 512       β”‚ 6.73 us     β”‚ 7778.39 us  β”‚ 100.00% β”‚
β”‚ l2       β”‚ 1536      β”‚ 17.13 us    β”‚ 26344.76 us β”‚ 100.00% β”‚
β”‚ l2       β”‚ 3000      β”‚ 35.30 us    β”‚ 60652.58 us β”‚ 100.00% β”‚
β””β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”΄β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”΄β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”΄β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”΄β”€β”€β”€β”€β”€β”€β”€β”€β”€β”˜

Quick Start

The quickest way to get started is to install vectorlite using python.

# Note: vectorlite-py not vectorlite. vectorlite is another project.
pip install vectorlite-py apsw numpy

Vectorlite's metadata filter feature requires sqlite>=3.38. Python's builtin sqlite module is usually built with old sqlite versions. So apsw is used here as sqlite driver, because it provides bindings to latest sqlite. Vectorlite still works with old sqlite versions if metadata filter support is not required. Below is a minimal example of using vectorlite. It can also be found in the examples folder.

import vectorlite_py
import apsw
import numpy as np
"""
Quick start of using vectorlite extension.
"""

conn = apsw.Connection(':memory:')
conn.enable_load_extension(True) # enable extension loading
conn.load_extension(vectorlite_py.vectorlite_path()) # load vectorlite

cursor = conn.cursor()
# check if vectorlite is loaded
print(cursor.execute('select vectorlite_info()').fetchall())

# Vector distance calculation
for distance_type in ['l2', 'cosine', 'ip']:
    v1 = "[1, 2, 3]"
    v2 = "[4, 5, 6]"
    # Note vector_from_json can be used to convert a JSON string to a vector
    distance = cursor.execute(f'select vector_distance(vector_from_json(?), vector_from_json(?), "{distance_type}")', (v1, v2)).fetchone()
    print(f'{distance_type} distance between {v1} and {v2} is {distance[0]}')

# generate some test data
DIM = 32 # dimension of the vectors
NUM_ELEMENTS = 10000 # number of vectors
data = np.float32(np.random.random((NUM_ELEMENTS, DIM))) # Only float32 vectors are supported by vectorlite for now

# Create a virtual table using vectorlite using l2 distance (default distance type) and default HNSW parameters
cursor.execute(f'create virtual table my_table using vectorlite(my_embedding float32[{DIM}], hnsw(max_elements={NUM_ELEMENTS}))')
# Vector distance type can be explicitly set to cosine using:
# cursor.execute(f'create virtual table my_table using vectorlite(my_embedding float32[{DIM}] cosine, hnsw(max_elements={NUM_ELEMENTS}))')

# Insert the test data into the virtual table. Note that the rowid MUST be explicitly set when inserting vectors and cannot be auto-generated.
# The rowid is used to uniquely identify a vector and serve as a "foreign key" to relate to the vector's metadata.
# Vectorlite takes vectors in raw bytes, so a numpy vector need to be converted to bytes before inserting into the table.
cursor.executemany('insert into my_table(rowid, my_embedding) values (?, ?)', [(i, data[i].tobytes()) for i in range(NUM_ELEMENTS)])

# Query the virtual table to get the vector at rowid 12345. Note the vector needs to be converted back to json using vector_to_json() to be human-readable. 
result = cursor.execute('select vector_to_json(my_embedding) from my_table where rowid = 1234').fetchone()
print(f'vector at rowid 1234: {result[0]}')

# Find 10 approximate nearest neighbors of data[0] and there distances from data[0].
# knn_search() is used to tell vectorlite to do a vector search.
# knn_param(V, K, ef) is used to pass the query vector V, the number of nearest neighbors K to find and an optional ef parameter to tune the performance of the search.
# If ef is not specified, ef defaults to 10. For more info on ef, please check https://github.com/nmslib/hnswlib/blob/v0.8.0/ALGO_PARAMS.md
result = cursor.execute('select rowid, distance from my_table where knn_search(my_embedding, knn_param(?, 10))', [data[0].tobytes()]).fetchall()
print(f'10 nearest neighbors of row 0 is {result}')

# Find 10 approximate nearest neighbors of the first embedding in vectors with rowid within [1000, 2000) using metadata(rowid) filtering.
rowids = ','.join([str(rowid) for rowid in range(1000, 2000)])
result = cursor.execute(f'select rowid, distance from my_table where knn_search(my_embedding, knn_param(?, 10)) and rowid in ({rowids})', [data[0].tobytes()]).fetchall()
print(f'10 nearest neighbors of row 0 in vectors with rowid within [1000, 2000) is {result}')

conn.close()

More examples can be found in examples and bindings/python/vectorlite_py/test folder.

Build Instructions

If you want to contribute or compile vectorlite for your own platform, you can follow following instructions to build it.

Prerequisites

  1. CMake >= 3.22
  2. Ninja
  3. A C++ compiler in PATH that supports c++17
  4. Python3

Build

Build sqlite extension only

git clone --recurse-submodules [email protected]:1yefuwang1/vectorlite.git

python3 bootstrap_vcpkg.py

# install dependencies for running python tests
python3 -m pip install -r requirements-dev.txt

sh build.sh # for debug build
sh build_release.sh # for release build

vecorlite.[so|dll|dylib] can be found in build/release/vectorlite or build/dev/vectorlite folder

Build wheel

python3 -m build -w

vectorlite_py wheel can be found in dist folder

Roadmap

  • SIMD support for ARM platform
  • Support user defined metadata/rowid filter
  • Support Multi-vector document search and epsilon search
  • Support multi-threaded search
  • Release vectorlite to more package managers.
  • Support more vector types, e.g. float16, int8.

Known limitations

  1. On a single query, a knn_search vector constraint can only be paired with at most one rowid constraint and vice versa. For example, The following queries will fail:
select rowid from my_table where rowid in (1,2,3) and rowid in (2, 3, 4) # multiple rowid constraints

select rowid, distance from my_table where knn_search(my_embedding, knn_param(vector_from_json('[1,2,3]'), 10)) and rowid in (1,2,3) and rowid in (3, 4) # multiple rowid constraints

select rowid, distance from my_table where knn_search(my_embedding, knn_param(vector_from_json('[1,2,3]'), 10)) and knn_search(my_embedding, knn_param(vector_from_json('[1,2,3]'), 10)) # multiple vector constraints

However, multiple constrains can be combined with or, because the query will search the underlying hnsw index multiple times. The results will be conbined by sqlite. The following queries will work.

select rowid from my_table where rowid in (1,2,3) or rowid in (2, 3, 4)

select rowid, distance from my_table where knn_search(my_embedding, knn_param(vector_from_json('[1,2,3]'), 10)) and rowid in (1,2,3) or rowid in (3, 4)

select rowid, distance from my_table where knn_search(my_embedding, knn_param(vector_from_json('[1,2,3]'), 10)) or knn_search(my_embedding, knn_param(vector_from_json('[1,2,3]'), 10)) 
  1. Only float32 vectors are supported for now.
  2. SIMD is only enabled on x86 platforms. Because the default implementation in hnswlib doesn't support SIMD on ARM. Vectorlite is 3x-4x slower on MacOS-ARM than MacOS-x64. I plan to improve it in the future.
  3. rowid in sqlite3 is of type int64_t and can be negative. However, rowid in a vectorlite table should be in this range [0, min(max value of size_t, max value of int64_t)]. The reason is rowid is used as labeltype in hnsw index, which has type size_t(usually 32-bit or 64-bit depending on the platform).
  4. Transaction is not supported.
  5. Metadata filter(rowid filter) requires sqlite3 >= 3.38. Python's built-in sqlite module is usually built with old versions. Please use a newer sqlite binding such as apsw if you want to use metadata filter. knn_search() without rowid fitler still works for old sqlite3.
  6. The vector index is held in memory.
  7. Deleting a row only marks the vector as deleted and doesn't free the memory. The vector will not be included in later queries. However, if another vector is inserted with the same rowid, the memory will be reused.
  8. A vectorlite table can only have one vector column.

Acknowledgement

This project is greatly inspired by following projects

About

Fast, SQL powered, in-process vector search for any language with an SQLite driver

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • C++ 72.1%
  • Python 21.4%
  • CMake 3.2%
  • JavaScript 2.1%
  • Shell 0.8%
  • C 0.2%
  • Smarty 0.2%