[skip e2e]Update milvus component name (#14501)

Signed-off-by: yanliang567 <yanliang.qiao@zilliz.com>
pull/14558/head
yanliang567 2021-12-29 22:48:13 +08:00 committed by GitHub
parent 38c431e98e
commit 3a72a255ee
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -467,7 +467,7 @@ message HasPartitionRequest {
```
## LoadPartitions
Load multiple partitions data into cache of query node. Return a `common.Status`(see [common.Status](#status)) to tell client whether the operation is successful.
Load multiple partitions data into cache of QueryNode. Return a `common.Status`(see [common.Status](#status)) to tell client whether the operation is successful.
Note: this interface only send a request to server ask to load partitions, it returns at once after the request is consumed. Loading progress is asynchronously.
```
rpc LoadPartitions(LoadPartitionsRequest) returns (common.Status) {}
@ -492,7 +492,7 @@ message LoadPartitionsRequest {
```
## ReleasePartitions
Release partitions data from cache of query node. Return a `common.Status`(see [common.Status](#status)) to tell client whether the operation is successful.
Release partitions data from cache of QueryNode. Return a `common.Status`(see [common.Status](#status)) to tell client whether the operation is successful.
```
rpc ReleasePartitions(ReleasePartitionsRequest) returns (common.Status) {}
```