未验证 提交 89c17c26 编写于 作者: N nameczz 提交者: GitHub

[skip ci] improve milvus_drop_collection_en.md (#11624)

Signed-off-by: NGitea <zizhao.chen@zilliz.com>
上级 5227db3f
# Drop Collection
`Milvus 2.0` uses `Collection` to represent a set of data, like `Table` in traditional database. Users can create or drop `Collection`.
`Milvus 2.0` uses `Collection` to represent a set of data, like `Table` in traditional database. Users can create or drop `Collection`.
This article introduces the execution path of `Drop Collection`. At the end of this article, you should know which components are involved in `Drop Collection`.
The execution flow of `Drop Collection` is shown in the following figure:
......@@ -19,9 +19,12 @@ service MilvusService {
}
message DropCollectionRequest {
common.MsgBase base = 1; // must
// Not useful for now
common.MsgBase base = 1;
// Not useful for now
string db_name = 2;
string collection_name = 3; // must
// Required, the collection name in milvus
string collection_name = 3;
}
```
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册