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

Signed-off-by: Edward Zeng <jie.zeng@zilliz.com>
pull/13370/head
edward.zeng 2021-12-14 18:35:23 +08:00 committed by GitHub
parent 1858ef9924
commit 979b09a327
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 7 additions and 4 deletions

View File

@ -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;
}
```