索引和查询向量

了解如何使用 Redis 为向量嵌入编制索引和查询

Redis 查询引擎允许您在哈希JSON 对象中为向量字段编制索引(有关更多信息,请参阅向量参考页面)。 除其他外,vector fields 可以存储文本嵌入,这些嵌入是 AI 生成的 vector 文本片段中语义信息的表示形式。两个嵌入向量之间的向量距离表示它们在语义上的相似程度。通过比较 从某些查询文本生成的嵌入与存储在 hash 中的嵌入的相似性 或 JSON 字段,Redis 可以检索在术语方面与查询紧密匹配的文档 的含义。

在下面的示例中,我们使用 HuggingFace 模型all-mpnet-base-v2生成向量嵌入以使用 Redis 查询引擎进行存储和索引。

初始化

如果您使用的是 Maven,请添加以下内容 dependencies 添加到您的pom.xml文件:

<dependency>
    <groupId>redis.clients</groupId>
    <artifactId>jedis</artifactId>
    <version>5.2.0</version>
</dependency>
<dependency>
    <groupId>ai.djl.huggingface</groupId>
    <artifactId>tokenizers</artifactId>
    <version>0.24.0</version>
</dependency>

If you are using Gradle, add the following dependencies to your build.gradle file:

implementation 'redis.clients:jedis:5.2.0'
implementation 'ai.djl.huggingface:tokenizers:0.24.0'

Import dependencies

Import the following classes in your source file:

// Jedis client and query engine classes.
import redis.clients.jedis.UnifiedJedis;
import redis.clients.jedis.search.*;
import redis.clients.jedis.search.schemafields.*;
import redis.clients.jedis.search.schemafields.VectorField.VectorAlgorithm;
import redis.clients.jedis.exceptions.JedisDataException;

// Data manipulation.
import java.nio.ByteBuffer;
import java.nio.ByteOrder;
import java.util.Map;
import java.util.List;

// Tokenizer to generate the vector embeddings.
import ai.djl.huggingface.tokenizers.HuggingFaceTokenizer;

Define a helper method

Our embedding model represents the vectors as an array of long integer values, but Redis Query Engine expects the vector components to be float values. Also, when you store vectors in a hash object, you must encode the vector array as a byte string. To simplify this situation, we declare a helper method longsToFloatsByteString() that takes the long array that the embedding model returns, converts it to an array of float values, and then encodes the float array as a byte string:

public static byte[] longsToFloatsByteString(long[] input) {
    float[] floats = new float[input.length];
    for (int i = 0; i < input.length; i++) {
        floats[i] = input[i];
    }

    byte[] bytes = new byte[Float.BYTES * floats.length];
    ByteBuffer
        .wrap(bytes)
        .order(ByteOrder.LITTLE_ENDIAN)
        .asFloatBuffer()
        .put(floats);
    return bytes;
}

Create a tokenizer instance

We will use the all-mpnet-base-v2 tokenizer to generate the embeddings. The vectors that represent the embeddings have 768 components, regardless of the length of the input text.

HuggingFaceTokenizer sentenceTokenizer = HuggingFaceTokenizer.newInstance(
    "sentence-transformers/all-mpnet-base-v2",
    Map.of("maxLength", "768",  "modelMaxLength", "768")
);

Create the index

Connect to Redis and delete any index previously created with the name vector_idx. (The ftDropIndex() call throws an exception if the index doesn't already exist, which is why you need the try...catch block.)

UnifiedJedis jedis = new UnifiedJedis("redis://localhost:6379");

try {jedis.ftDropIndex("vector_idx");} catch (JedisDataException j){}

Next, we create the index. The schema in the example below includes three fields: the text content to index, a tag field to represent the "genre" of the text, and the embedding vector generated from the original text content. The embedding field specifies HNSW indexing, the L2 vector distance metric, Float32 values to represent the vector's components, and 768 dimensions, as required by the all-mpnet-base-v2 embedding model.

The FTCreateParams object specifies hash objects for storage and a prefix doc: that identifies the hash objects we want to index.

SchemaField[] schema = {
    TextField.of("content"),
    TagField.of("genre"),
    VectorField.builder()
        .fieldName("embedding")
        .algorithm(VectorAlgorithm.HNSW)
        .attributes(
            Map.of(
                "TYPE", "FLOAT32",
                "DIM", 768,
                "DISTANCE_METRIC", "L2"
            )
        )
        .build()
};

jedis.ftCreate("vector_idx",
    FTCreateParams.createParams()
        .addPrefix("doc:")
        .on(IndexDataType.HASH),
        schema
);

Add data

You can now supply the data objects, which will be indexed automatically when you add them with hset(), as long as you use the doc: prefix specified in the index definition.

Use the encode() method of the sentenceTokenizer object as shown below to create the embedding that represents the content field. The getIds() method that follows encode() obtains the vector of long values which we then convert to a float array stored as a byte string using our helper method. Use the byte string representation when you are indexing hash objects (as we are here), but use the default list of float for JSON objects. Note that when we set the embedding field, we must use an overload of hset() that requires byte arrays for each of the key, the field name, and the value, which is why we include the getBytes() calls on the strings.

String sentence1 = "That is a very happy person";
jedis.hset("doc:1", Map.of("content", sentence1, "genre", "persons"));
jedis.hset(
    "doc:1".getBytes(),
    "embedding".getBytes(),
    longsToFloatsByteString(sentenceTokenizer.encode(sentence1).getIds())
);

String sentence2 = "That is a happy dog";
jedis.hset("doc:2", Map.of("content", sentence2, "genre", "pets"));
jedis.hset(
    "doc:2".getBytes(),
    "embedding".getBytes(),
    longsToFloatsByteString(sentenceTokenizer.encode(sentence2).getIds())
);

String sentence3 = "Today is a sunny day";
jedis.hset("doc:3", Map.of("content", sentence3, "genre", "weather"));
jedis.hset(
    "doc:3".getBytes(),
    "embedding".getBytes(),
    longsToFloatsByteString(sentenceTokenizer.encode(sentence3).getIds())
);

Run a query

After you have created the index and added the data, you are ready to run a query. To do this, you must create another embedding vector from your chosen query text. Redis calculates the vector distance between the query vector and each embedding vector in the index as it runs the query. We can request the results to be sorted to rank them in order of ascending distance.

The code below creates the query embedding using the encode() method, as with the indexing, and passes it as a parameter when the query executes (see Vector search for more information about using query parameters with embeddings). The query is a K nearest neighbors (KNN) search that sorts the results in order of vector distance from the query vector.

String sentence = "That is a happy person";

int K = 3;
Query q = new Query("*=>[KNN $K @embedding $BLOB AS distance]")
                .returnFields("content", "distance")
                .addParam("K", K)
                .addParam(
                    "BLOB",
                    longsToFloatsByteString(
                        sentenceTokenizer.encode(sentence)..getIds()
                    )
                )
                .setSortBy("distance", true)
                .dialect(2);

List<Document> docs = jedis.ftSearch("vector_idx", q).getDocuments();

for (Document doc: docs) {
    System.out.println(
        String.format(
            "ID: %s, Distance: %s, Content: %s",
            doc.getId(),
            doc.get("distance"),
            doc.get("content")
        )
    );
}

Assuming you have added the code from the steps above to your source file, it is now ready to run, but note that it may take a while to complete when you run it for the first time (which happens because the tokenizer must download the all-mpnet-base-v2 model data before it can generate the embeddings). When you run the code, it outputs the following result text:

Results:
ID: doc:2, Distance: 1411344, Content: That is a happy dog
ID: doc:1, Distance: 9301635, Content: That is a very happy person
ID: doc:3, Distance: 67178800, Content: Today is a sunny day

Note that the results are ordered according to the value of the distance field, with the lowest distance indicating the greatest similarity to the query. For this model, the text "That is a happy dog" is the result judged to be most similar in meaning to the query text "That is a happy person".

Learn more

See Vector search for more information about the indexing options, distance metrics, and query format for vectors.

RATE THIS PAGE
Back to top ↑