2021-06-15 14:43:57 +08:00
|
|
|
syntax = "proto3";
|
|
|
|
package milvus.proto.segcore;
|
|
|
|
|
|
|
|
option go_package = "github.com/milvus-io/milvus/internal/proto/segcorepb";
|
|
|
|
import "schema.proto";
|
|
|
|
|
|
|
|
message RetrieveResults {
|
|
|
|
schema.IDs ids = 1;
|
2021-07-16 17:19:55 +08:00
|
|
|
repeated int64 offset = 2;
|
|
|
|
repeated schema.FieldData fields_data = 3;
|
2021-06-15 14:43:57 +08:00
|
|
|
}
|
|
|
|
|
2021-06-19 17:38:11 +08:00
|
|
|
message LoadFieldMeta {
|
2021-07-16 17:19:55 +08:00
|
|
|
int64 min_timestamp = 1;
|
|
|
|
int64 max_timestamp = 2;
|
|
|
|
int64 row_count = 3;
|
2021-06-19 17:38:11 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
message LoadSegmentMeta {
|
2021-07-16 17:19:55 +08:00
|
|
|
// TODOs
|
|
|
|
repeated LoadFieldMeta metas = 1;
|
|
|
|
int64 total_size = 2;
|
2021-06-19 17:38:11 +08:00
|
|
|
}
|
2022-04-29 13:35:49 +08:00
|
|
|
|
|
|
|
message InsertRecord {
|
|
|
|
repeated schema.FieldData fields_data = 1;
|
|
|
|
int64 num_rows = 2;
|
|
|
|
}
|