updated docs for new OpenSearch vector-store properties (#3140)

Signed-off-by: Linar Abzaltdinov <abzaltdinov@gmail.com>
This commit is contained in:
Linar Abzaltdinov
2025-05-13 19:37:53 +03:00
committed by GitHub
parent cfeba7cf5d
commit 77be609c4a
2 changed files with 10 additions and 1 deletions

View File

@@ -46,10 +46,13 @@ public class OpenSearchVectorStoreProperties extends CommonVectorStoreProperties
private String sslBundle;
/**
*
* Time to wait until connection established. 0 - infinity.
*/
private Duration connectionTimeout;
/**
* Time to wait for response from the opposite endpoint. 0 - infinity.
*/
private Duration readTimeout;
private Aws aws = new Aws();

View File

@@ -103,6 +103,9 @@ spring:
index-name: spring-ai-document-index
initialize-schema: true
similarity-function: cosinesimil
read-timeout: <time to wait for response>
connect-timeout: <time to wait until connection established>
ssl-bundle: <name of SSL bundle>
aws: # Only for Amazon OpenSearch Service
host: <aws opensearch host>
service-name: <aws service name>
@@ -123,6 +126,9 @@ Properties starting with `spring.ai.vectorstore.opensearch.*` are used to config
|`spring.ai.vectorstore.opensearch.index-name`| Name of the index to store vectors | `spring-ai-document-index`
|`spring.ai.vectorstore.opensearch.initialize-schema`| Whether to initialize the required schema | `false`
|`spring.ai.vectorstore.opensearch.similarity-function`| The similarity function to use | `cosinesimil`
|`spring.ai.vectorstore.opensearch.read-timeout`| Time to wait for response from the opposite endpoint. 0 - infinity. | -
|`spring.ai.vectorstore.opensearch.connect-timeout`| Time to wait until connection established. 0 - infinity. | -
|`spring.ai.vectorstore.opensearch.ssl-bundle`| Name of the SSL Bundle to use in case of SSL connection | -
|`spring.ai.vectorstore.opensearch.aws.host`| Hostname of the OpenSearch instance | -
|`spring.ai.vectorstore.opensearch.aws.service-name`| AWS service name | -
|`spring.ai.vectorstore.opensearch.aws.access-key`| AWS access key | -