diff --git a/v2.3.x/Variables.json b/v2.3.x/Variables.json index a3b50fcf7..efe995d5f 100644 --- a/v2.3.x/Variables.json +++ b/v2.3.x/Variables.json @@ -4,7 +4,7 @@ "milvus_deb_name": "milvus_2.2.0-1_amd64", "milvus_rpm_name": "milvus-2.2.0-1.el7.x86_64", "milvus_python_sdk_version": "2.3.x", - "milvus_python_sdk_real_version": "2.3.5", + "milvus_python_sdk_real_version": "2.3.6", "milvus_node_sdk_version": "2.3.x", "milvus_node_sdk_real_version": "2.3.5", "milvus_go_sdk_version": "2.3.x", @@ -14,7 +14,7 @@ "milvus_csharp_sdk_version": "2.2.x", "milvus_csharp_sdk_real_version": "2.2.14", "milvus_restful_sdk_version": "2.3.x", - "milvus_restful_sdk_real_version": "2.3.5", + "milvus_restful_sdk_real_version": "2.3.7", "milvus_operator_version": "0.9.3", "milvus_helm_chart_version": "4.1.16", "milvus_image": "2.3.7", diff --git a/v2.3.x/site/en/adminGuide/chunk_cache.md b/v2.3.x/site/en/adminGuide/chunk_cache.md index 881f2353f..99d5c219a 100644 --- a/v2.3.x/site/en/adminGuide/chunk_cache.md +++ b/v2.3.x/site/en/adminGuide/chunk_cache.md @@ -5,13 +5,13 @@ title: Configure Chunk Cache # Connfigure Chunk Cache -The chunk cache mechanism enables Milvus to pre-load data into cache memory on the local hard disk of the query nodes before it is needed. This mechanism significantly improves vector retrieval performance by reducing the time it takes to load data from disk to memory. +The chunk cache mechanism enables Milvus to pre-load data into cache on the local hard disk of the query nodes before it is needed. This mechanism significantly improves vector retrieval performance by reducing the time it takes to load data from disk to memory. ## Background -Before conducting queries to retrieve vectors, you need to load the data from object storage to the memory cache on the local hard disk of the query nodes. This is a time-consuming process. Before all data is loaded, Milvus may respond to some vector retrieval requests with a delay. +Before conducting queries to retrieve vectors, Milvus needs to load the data from object storage to the memory cache on the local hard disk of the query nodes. This is a time-consuming process. Before all data is loaded, Milvus may respond to some vector retrieval requests with a delay. -To improve the query performance, Milvus provides a chunk cache mechanism to pre-load data from object storage into the cache memory on the local hard disk before it is needed. When a query request is received, the Segcore first checks if the data is in the cache memory, instead of the object storage. If the data is in the cache memory, Segcore can quickly retrieve it from the cache memory and return the result to the client. +To improve the query performance, Milvus provides a chunk cache mechanism to pre-load data from object storage into the cache on the local hard disk before it is needed. When a query request is received, the Segcore first checks if the data is in the cache, instead of the object storage. If the data is in the cache, Segcore can quickly retrieve it from the cache and return the result to the client. ## Configure Chunk Cache @@ -37,7 +37,7 @@ queryNode: warmup: async ``` -The `warmup` parameter determines whether Milvus pre-loads data from the object storage into the memory cache on the local hard disk of the query nodes before it is needed. This parameter defaults to `async`. Possible options are as follows: +The `warmup` parameter determines whether Milvus pre-loads data from the object storage into the cache on the local hard disk of the query nodes before it is needed. This parameter defaults to `async`. Possible options are as follows: - `async`: Milvus pre-loads data asynchronously in the background, which does not affect the time it takes to load a collection. However, users may experience a delay when retrieving vectors for a short period of time after the load process is complete. This is the default option. - `sync`: Milvus pre-loads data synchronously, which may affect the time it takes to load a collection. However, users can perform queries immediately after the load process is complete without any delay. diff --git a/v2.3.x/site/en/adminGuide/resource_group.md b/v2.3.x/site/en/adminGuide/resource_group.md index 9ff816783..fa385363f 100644 --- a/v2.3.x/site/en/adminGuide/resource_group.md +++ b/v2.3.x/site/en/adminGuide/resource_group.md @@ -18,7 +18,7 @@ Note that a Milvus instance maintains a default resource group to hold all the q