JVector is a pure Java embedded vector search engine, used by DataStax Astra DB and (soon) Apache Cassandra.
What is JVector?
- Algorithmic-fast. JVector uses state of the art graph algorithms inspired by DiskANN and related research that offer high recall and low latency.
- Implementation-fast. JVector uses the Panama SIMD API to accelerate index build and queries.
- Memory efficient. JVector compresses vectors using product quantization so they can stay in memory during searches. (As part of our PQ implementation, our SIMD-accelerated kmeans class is 5x faster than the one in Apache Commons Math.)
- Disk-aware. JVector’s disk layout is designed to do the minimum necessary iops at query time.
- Concurrent. Index builds scale linearly to at least 32 threads. Double the threads, half the build time.
- Incremental. Query your index as you build it. No delay between adding a vector and being able to find it in search results.
- Easy to embed. API designed for easy embedding, by people using it in production.
JVector vs Lucene searching the Deep100M dataset (about 35GB of vectors and 25GB index):
JVector scales updates linearly to at least 32 threads:
Adding to your project. Replace ${latest-version}
with . Example <version>1.0.1</version>
:
<dependency>
<groupId>io.github.jbellis</groupId>
<artifactId>jvector</artifactId>
<!-- Use the latest version from https://central.sonatype.com/artifact/io.github.jbellis/jvector -->
<version>${latest-version}</version>
</dependency>
Building the index:
GraphIndexBuilder
is the entry point for building a graph. You will need to implementRandomAccessVectorValues
to provide vectors to the builder;ListRandomAccessVectorValues
is a good starting point.- If all your vectors
are in the provider
up front, you can just call
build()
and it will parallelize the build across all available cores. Otherwise you can calladdGraphNode
as you add vectors; this is non-blocking and can be called concurrently from multiple threads. - Call
GraphIndexBuilder.complete
when you are done adding vectors. This will optimize the index and make it ready to write to disk. (Graphs that are in the process of being built can be searched at any time; you do not have to call complete first.)
Searching the index:
GraphSearcher
is the entry point for searching. Results come back as aSearchResult
object that contains node IDs and scores, in descending order of similarity to the query vector.GraphSearcher
objects are re-usable, so unless you have a very simple use case you should useGraphSearcher.Builder
to create them;GraphSearcher::search
is also available with simple defaults, but calling it will instantiate a newGraphSearcher
every time so performance will be worse.- JVector represents vectors in the index as the ordinal (int) corresponding to their
index in the
RandomAccessVectorValues
you provided. You can get the original vector back withGraphIndex.getVector
, if necessary, but since this is a disk-backed index you should design your application to avoid doing so if possible.
JVector implements DiskANN-style search, meaning that vectors can be compressed using product quantization so that searches can be performed using the compressed representation that is kept in memory. You can enable this with the following steps:
- Create a
ProductQuantization
object with your vectors usingProductQuantization.compute
. This will take some time to compute the codebooks. - Use
ProductQuantization::encode
orencodeAll
to encode your vectors. - Create a
CompressedVectors
object from the encoded vectors. - Create a
NeighborSimilarity.ApproximateScoreFunction
for your query that uses theProductQuantization
object andCompressedVectors
to compute scores, and pass this to theGraphSearcher.search
method.
OnDiskGraphIndex
andCompressedVectors
havewrite()
methods to save state to disk. They initialize from disk using their constructor andload()
methods, respectively. Writing just requires a DataOutput, but reading requires an implementation ofRandomAccessReader
and the relatedReaderSupplier
to wrap your preferred i/o class for best performance. SeeSimpleMappedReader
andSimpleMappedReaderSupplier
for an example.- Building a graph does not technically require your RandomAccessVectorValues object to live in memory, but it will perform much better if it does. OnDiskGraphIndex, by contrast, is designed to live on disk and use minimal memory otherwise.
- You can optionally wrap
OnDiskGraphIndex
in aCachingGraphIndex
to keep the most commonly accessed nodes (the ones nearest to the graph entry point) in memory.
- JVector heavily utilizes the Panama Vector API(SIMD) for ANN indexing and search. We have seen cases where the memory
bandwidth is saturated during indexing and product quantization and can cause the process to slow down. To avoid
this, index and PQ builds use a
PhysicalCoreExecutor
to limit the amount of operations to the physical core count. The default value is 1/2 the processor count seen by Java. This may not be correct in all setups (e.g. no hyperthreading or hybrid architectures) so if you wish to override the default use the-Djvector.physical_core_count
property.
- The
SiftSmall
class demonstrates how to put all of the above together to index and search the "small" SIFT dataset of 10,000 vectors. - The
Bench
class performs grid search across theGraphIndexBuilder
parameter space to find the best tradeoffs between recall and throughput. You can useplot_output.py
to graph the pareto-optimal points found byBench
.
Some sample KNN datasets for testing based on ada-002 embeddings generated on wikipedia data are available in ivec/fvec format for testing at:
aws s3 ls s3://astra-vector/wikipedia/ --no-sign-request
PRE 100k/
PRE 1M/
PRE 4M/
download them with the aws s3 cli as follows:
aws s3 sync s3://astra-vector/wikipedia/100k ./ --no-sign-request
This project is organized as a multimodule Maven build. The intent is to produce a multirelease jar suitable for use as
a dependency from any Java 11 code. When run on a Java 20+ JVM with the Vector module enabled, optimized vector
providers will be used. In general, the project is structured to be built with JDK 20+, but when JAVA_HOME
is set to
Java 11 -> Java 19, certain build features will still be available.
Base code is in jvector-base and will be built for Java 11 releases, restricting language features and APIs appropriately. Code in jvector-twenty will be compiled for Java 20 language features/APIs and included in the final multirelease jar targetting supported JVMs. jvector-multirelease packages jvector-base and jvector-twenty as a multirelease jar for release. jvector-examples is an additional sibling module that uses the reactor-representation of jvector-base/jvector-twenty to run example code.
You can run SiftSmall
and Bench
directly to get an idea of what all is going on here. Bench
requires some datasets to be downloaded from https://github.com/erikbern/ann-benchmarks. The files used by SiftSmall
can be found in the siftsmall directory in the project root.
To run either class, you can use the Maven exec-plugin via the following incantations:
mvn compile exec:exec@bench
or for Sift:
mvn compile exec:exec@sift
To run Sift/Bench without the JVM vector module available, you can use the following invocations:
mvn -Pjdk11 compile exec:exec@bench
mvn -Pjdk11 compile exec:exec@sift
The ... -Pjdk11
invocations will also work with JAVA_HOME
pointing at a Java 11 installation.
To release, configure ~/.m2/settings.xml
to point to OSSRH and run mvn -Prelease clean deploy
.