[skip ci] Add note for proto api (#12858)

Signed-off-by: yhmo <yihua.mo@zilliz.com>
pull/12878/head
groot 2021-12-07 12:05:51 +08:00 committed by GitHub
parent f7665f2c40
commit b9a94231af
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 0 deletions

View File

@ -209,6 +209,7 @@ message HasCollectionRequest {
## LoadCollection
Load a collection data into cache of query node. 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 collection, it returns at once after the request is consumed. Collection loading progress is asynchronously.
```
rpc LoadCollection(LoadCollectionRequest) returns (common.Status) {}
```
@ -467,6 +468,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.
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) {}
```