mirror of
https://gitee.com/milvus-io/milvus.git
synced 2024-12-03 04:19:18 +08:00
22e6807e9a
pr: https://github.com/milvus-io/milvus/pull/33184 pr: https://github.com/milvus-io/milvus/pull/33452 pr: https://github.com/milvus-io/milvus/pull/33633 issue: https://github.com/milvus-io/milvus/issues/27704 Co-authored-by: xiaocai2333 <cai.zhang@zilliz.com> --------- Signed-off-by: Cai Zhang <cai.zhang@zilliz.com> Signed-off-by: longjiquan <jiquan.long@zilliz.com> Co-authored-by: cai.zhang <cai.zhang@zilliz.com>
24 lines
566 B
Protocol Buffer
24 lines
566 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
package milvus.proto.cgo;
|
|
option go_package="github.com/milvus-io/milvus/internal/proto/cgopb";
|
|
|
|
import "schema.proto";
|
|
|
|
message LoadIndexInfo {
|
|
int64 collectionID = 1;
|
|
int64 partitionID = 2;
|
|
int64 segmentID = 3;
|
|
schema.FieldSchema field = 5;
|
|
bool enable_mmap = 6;
|
|
string mmap_dir_path = 7;
|
|
int64 indexID = 8;
|
|
int64 index_buildID = 9;
|
|
int64 index_version = 10;
|
|
map<string, string> index_params = 11;
|
|
repeated string index_files = 12;
|
|
string uri = 13;
|
|
int64 index_store_version = 14;
|
|
int32 index_engine_version = 15;
|
|
}
|