未验证 提交 979b09a3 编写于 作者: E edward.zeng 提交者: GitHub

[skip ci] Refine create index design doc (#13361)

Signed-off-by: NEdward Zeng <jie.zeng@zilliz.com>
上级 1858ef99
......@@ -18,11 +18,14 @@ service MilvusService {
}
message CreateIndexRequest {
common.MsgBase base = 1; // must
common.MsgBase base = 1;
string db_name = 2;
string collection_name = 3; // must
string field_name = 4; // must
repeated common.KeyValuePair extra_params = 5; // must
string collection_name = 3;
string field_name = 4;
int64 dbID = 5;
int64 collectionID = 6;
int64 fieldID = 7;
repeated common.KeyValuePair extra_params = 8;
}
```
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册