Elasticsearch

本节将指导您设置 Elasticsearch VectorStore 以存储文档嵌入并执行相似性搜索。

Elasticsearch 是一个基于 Apache Lucene 库的开源搜索和分析引擎。

先决条件

正在运行的 Elasticsearch 实例。提供以下选项:

自动配置

Spring AI 为 Elasticsearch Vector Store 提供了 Spring Boot 自动配置。要启用它,请将以下依赖项添加到项目的 Maven pom.xml 或 Gradle build.gradle 构建文件中:

  • Maven

  • Gradle

<dependency>
    <groupId>org.springframework.ai</groupId>
    <artifactId>spring-ai-elasticsearch-store-spring-boot-starter</artifactId>
</dependency>
dependencies {
    implementation 'org.springframework.ai:spring-ai-elasticsearch-store-spring-boot-starter'
}

对于 Spring Boot 3.3.0 之前的版本,需要显式添加 elasticsearch-java 依赖项,版本 > 8.13.3,否则使用的旧版本将与执行的查询不兼容。

  • Maven

  • Gradle

<dependency>
    <groupId>co.elastic.clients</groupId>
    <artifactId>elasticsearch-java</artifactId>
    <version>8.13.3</version>
</dependency>
dependencies {
    implementation 'co.elastic.clients:elasticsearch-java:8.13.3'
}
请参阅 依赖项管理 部分,以将 Spring AI BOM 添加到您的构建文件中。
请参阅 代码库 部分,以将里程碑和/或快照代码库添加到您的构建文件中。

向量存储实现可以为您初始化所需的模式,但您必须通过在适当的构造函数中指定 initializeSchema 布尔值或在 application.properties 文件中设置 …​initialize-schema=true 来选择加入。或者,您可以选择退出初始化并使用 Elasticsearch 客户端手动创建索引,如果索引需要高级映射或其他配置,这将非常有用。

这是一个重大更改!在早期版本的 Spring AI 中,此模式初始化是默认执行的。

请查看向量存储的 配置参数 列表,了解默认值和配置选项。这些属性也可以通过配置 ElasticsearchVectorStoreOptions bean 来设置。

此外,您还需要一个已配置的 EmbeddingModel bean。有关更多信息,请参阅 EmbeddingModel 部分。

现在,您可以将 ElasticsearchVectorStore 作为向量存储自动连接到您的应用程序。

@Autowired VectorStore vectorStore;

// ...

List <Document> documents = List.of(
    new Document("Spring AI rocks!! Spring AI rocks!! Spring AI rocks!! Spring AI rocks!! Spring AI rocks!!", Map.of("meta1", "meta1")),
    new Document("The World is Big and Salvation Lurks Around the Corner"),
    new Document("You walk forward facing the past and you turn back toward the future.", Map.of("meta2", "meta2")));

// Add the documents to Qdrant
vectorStore.add(documents);

// Retrieve documents similar to a query
List<Document> results = this.vectorStore.similaritySearch(SearchRequest.query("Spring").withTopK(5));

配置属性

要连接到 Elasticsearch 并使用 ElasticsearchVectorStore,您需要提供实例的访问详细信息。简单的配置可以通过 Spring Boot 的 application.yml 提供,

spring:
  elasticsearch:
    uris: <elasticsearch instance URIs>
    username: <elasticsearch username>
    password: <elasticsearch password>
# API key if needed, e.g. OpenAI
  ai:
    openai:
      api:
        key: <api-key>

环境变量,

export SPRING_ELASTICSEARCH_URIS=<elasticsearch instance URIs>
export SPRING_ELASTICSEARCH_USERNAME=<elasticsearch username>
export SPRING_ELASTICSEARCH_PASSWORD=<elasticsearch password>
# API key if needed, e.g. OpenAI
export SPRING_AI_OPENAI_API_KEY=<api-key>

或者两者兼而有之。例如,如果您想将密码存储为环境变量,但将其余部分保留在普通的 application.yml 文件中。

如果您选择创建 shell 脚本以方便将来的工作,请务必在启动应用程序之前通过“source”文件运行它,即 source <your_script_name>.sh

Elasticsearch RestClient 的 Spring Boot 自动配置功能将创建一个 bean 实例,该实例将由 ElasticsearchVectorStore 使用。

spring.elasticsearch.* 开头的 Spring Boot 属性用于配置 Elasticsearch 客户端。

属性 描述 默认值

spring.elasticsearch.connection-timeout

与 Elasticsearch 通信时使用的连接超时。

1s

spring.elasticsearch.password

用于 Elasticsearch 身份验证的密码。

-

spring.elasticsearch.username

用于 Elasticsearch 身份验证的用户名。

-

spring.elasticsearch.uris

要使用的 Elasticsearch 实例的逗号分隔列表。

localhost:9200

spring.elasticsearch.path-prefix

添加到发送到 Elasticsearch 的每个请求路径的开头。

-

spring.elasticsearch.restclient.sniffer.delay-after-failure

故障后安排的嗅探执行延迟。

1m

spring.elasticsearch.restclient.sniffer.interval

连续普通嗅探执行之间的间隔。

5m

spring.elasticsearch.restclient.ssl.bundle

SSL 包名称。

-

spring.elasticsearch.socket-keep-alive

是否启用客户端和 Elasticsearch 之间的套接字保持活动。

false

spring.elasticsearch.socket-timeout

与 Elasticsearch 通信时使用的套接字超时。

30s

spring.ai.vectorstore.elasticsearch.* 开头的属性用于配置 ElasticsearchVectorStore

属性 描述 默认值

spring.ai.vectorstore.elasticsearch.initialize-schema

是否初始化所需的模式

false

spring.ai.vectorstore.elasticsearch.index-name

存储向量的索引名称。

spring-ai-document-index

spring.ai.vectorstore.elasticsearch.dimensions

向量的维度数。

1536

spring.ai.vectorstore.elasticsearch.similarity

要使用的相似性函数。

cosine

可用的相似性函数如下:

  • cosine

  • l2_norm

  • dot_product

有关每个函数的更多详细信息,请参阅Elasticsearch 文档中的密集向量部分。

元数据过滤

您也可以将通用的、可移植的元数据过滤器与 Elasticsearch 一起使用。

例如,您可以使用文本表达式语言

vectorStore.similaritySearch(SearchRequest.defaults()
        .withQuery("The World")
        .withTopK(TOP_K)
        .withSimilarityThreshold(SIMILARITY_THRESHOLD)
        .withFilterExpression("author in ['john', 'jill'] && 'article_type' == 'blog'"));

或使用Filter.Expression DSL 以编程方式进行。

FilterExpressionBuilder b = new FilterExpressionBuilder();

vectorStore.similaritySearch(SearchRequest.defaults()
        .withQuery("The World")
        .withTopK(TOP_K)
        .withSimilarityThreshold(SIMILARITY_THRESHOLD)
        .withFilterExpression(b.and(
                b.in("john", "jill"),
                b.eq("article_type", "blog")).build()));
这些(可移植的)过滤器表达式会自动转换为专有的 Elasticsearch 查询字符串查询

例如,此可移植过滤器表达式

author in ['john', 'jill'] && 'article_type' == 'blog'

将转换为专有的 Elasticsearch 过滤器格式

(metadata.author:john OR jill) AND metadata.article_type:blog

手动配置

您可以手动配置 Elasticsearch 向量存储,而不是使用 Spring Boot 自动配置。为此,您需要将spring-ai-elasticsearch-store添加到您的项目中

<dependency>
    <groupId>org.springframework.ai</groupId>
    <artifactId>spring-ai-elasticsearch-store</artifactId>
</dependency>

或添加到您的 Gradle build.gradle 构建文件中。

dependencies {
    implementation 'org.springframework.ai:spring-ai-elasticsearch-store'
}

创建一个 Elasticsearch RestClient bean。阅读Elasticsearch 文档,以获取有关自定义 RestClient 配置的更深入信息。

@Bean
public RestClient restClient() {
    RestClient.builder(new HttpHost("<host>", 9200, "http"))
        .setDefaultHeaders(new Header[]{
            new BasicHeader("Authorization", "Basic <encoded username and password>")
        })
        .build();
}

然后创建ElasticsearchVectorStore bean

@Bean
public ElasticsearchVectorStore vectorStore(EmbeddingModel embeddingModel, RestClient restClient) {
    return new ElasticsearchVectorStore( restClient, embeddingModel);
}

// This can be any EmbeddingModel implementation.
@Bean
public EmbeddingModel embeddingModel() {
    return new OpenAiEmbeddingModel(new OpenAiApi(System.getenv("OPENAI_API_KEY")));
}