mirror of https://github.com/milvus-io/milvus.git
[skip ci] Refine create index design doc (#13361)
Signed-off-by: Edward Zeng <jie.zeng@zilliz.com>pull/13370/head
parent
1858ef9924
commit
979b09a327
|
@ -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;
|
||||
}
|
||||
```
|
||||
|
||||
|
|
Loading…
Reference in New Issue