498b235461
Build and test / Build and test AMD64 Ubuntu 22.04 (push) Failing after 0s
Publish Builder / amazonlinux2023 (push) Failing after 1s
Build and test / UT for Go (push) Has been skipped
Publish KRTE Images / KRTE (push) Failing after 1s
Build and test / Integration Test (push) Has been skipped
Build and test / Upload Code Coverage (push) Has been skipped
Publish Builder / rockylinux9 (push) Failing after 1s
Publish Builder / ubuntu22.04 (push) Failing after 0s
Publish Builder / ubuntu24.04 (push) Failing after 0s
Publish Gpu Builder / publish-gpu-builder (push) Failing after 1s
Publish Test Images / PyTest (push) Failing after 0s
Build and test / UT for Cpp (push) Has been cancelled
39 lines
975 B
Protocol Buffer
39 lines
975 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
package milvus.proto.cgo;
|
|
option go_package="github.com/milvus-io/milvus/pkg/v3/proto/cgopb";
|
|
|
|
import "schema.proto";
|
|
import "index_coord.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; //Deprecated
|
|
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 [deprecated = true];
|
|
int32 index_engine_version = 15;
|
|
int64 index_file_size = 16;
|
|
int64 num_rows = 17;
|
|
int32 current_scalar_index_version = 18;
|
|
index.IndexStorePathVersion index_store_path_version = 19;
|
|
}
|
|
|
|
message IndexStats {
|
|
int64 mem_size = 1;
|
|
repeated SerializedIndexFileInfo serialized_index_infos = 3;
|
|
}
|
|
|
|
message SerializedIndexFileInfo {
|
|
string file_name = 1;
|
|
int64 file_size = 2;
|
|
}
|