mirror of https://github.com/milvus-io/milvus.git
[skip ci]Improve drop collection doc grammar (#10239)
Signed-off-by: tumao <yan.wang@zilliz.com>pull/10310/head
parent
12965c3ce5
commit
788c69dfa2
|
@ -5,7 +5,7 @@ The execution flow of `Drop Collection` is shown in the following figure:
|
|||
|
||||

|
||||
|
||||
1. Firstly, `SDK` starts a `DropCollection` request to `Proxy` via `Grpc`, the `proto` is defined as follows:
|
||||
1. Firstly, `SDK` sends a `DropCollection` request to `Proxy` via `Grpc`, the `proto` is defined as follows:
|
||||
```proto
|
||||
service MilvusService {
|
||||
...
|
||||
|
@ -22,7 +22,7 @@ message DropCollectionRequest {
|
|||
}
|
||||
```
|
||||
|
||||
2. Once the `DropCollection` request is received, the `Proxy` would wrap this request into `DropCollectionTask`, and push this task into `DdTaskQueue` queue. After that, `Proxy` would call method of `WatiToFinish` to wait until the task is finished.
|
||||
2. Once the `DropCollection` request is received, the `Proxy` would wrap this request into `DropCollectionTask`, and push this task into `DdTaskQueue` queue. After that, `Proxy` would call `WatiToFinish` method to wait until the task is finished.
|
||||
```go
|
||||
type task interface {
|
||||
TraceCtx() context.Context
|
||||
|
|
Loading…
Reference in New Issue