2021-01-14 14:24:14 +08:00
|
|
|
syntax = "proto3";
|
|
|
|
|
|
|
|
package milvus.proto.data;
|
|
|
|
|
|
|
|
option go_package = "github.com/zilliztech/milvus-distributed/internal/proto/datapb";
|
|
|
|
|
|
|
|
import "common.proto";
|
|
|
|
import "internal.proto";
|
|
|
|
|
|
|
|
|
|
|
|
message RegisterNodeRequest {
|
2021-01-16 15:06:19 +08:00
|
|
|
common.MsgBase base = 1;
|
2021-01-14 14:24:14 +08:00
|
|
|
common.Address address = 2;
|
|
|
|
}
|
|
|
|
|
|
|
|
message RegisterNodeResponse {
|
|
|
|
internal.InitParams init_params = 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
message SegIDRequest {
|
2021-01-18 19:32:08 +08:00
|
|
|
uint32 count = 1;
|
2021-01-19 12:10:49 +08:00
|
|
|
string channelName = 2;
|
2021-01-14 14:24:14 +08:00
|
|
|
int64 collectionID = 3;
|
|
|
|
int64 partitionID = 4;
|
2021-01-18 19:32:08 +08:00
|
|
|
string coll_name = 5;// todo remove
|
|
|
|
string partition_name = 6; // todo remove
|
2021-01-14 14:24:14 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
message AssignSegIDRequest {
|
|
|
|
int64 nodeID = 1;
|
|
|
|
string peer_role = 2;
|
2021-01-19 12:10:49 +08:00
|
|
|
uint64 timestamp = 3;
|
|
|
|
repeated SegIDRequest segIDRequests = 4;
|
2021-01-14 14:24:14 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
message SegIDAssignment {
|
|
|
|
int64 segID = 1;
|
2021-01-19 12:10:49 +08:00
|
|
|
string channelName = 2;
|
2021-01-14 14:24:14 +08:00
|
|
|
uint32 count = 3;
|
|
|
|
int64 collectionID = 4;
|
|
|
|
int64 partitionID = 5;
|
|
|
|
uint64 expire_time = 6;
|
|
|
|
common.Status status = 7;
|
2021-01-18 19:32:08 +08:00
|
|
|
string coll_name = 8;// todo remove
|
|
|
|
string partition_name = 9;// todo remove
|
2021-01-14 14:24:14 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
message AssignSegIDResponse {
|
|
|
|
repeated SegIDAssignment segIDAssignments = 1;
|
2021-01-19 12:10:49 +08:00
|
|
|
common.Status status = 2;
|
2021-01-14 14:24:14 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
message FlushRequest {
|
2021-01-16 15:06:19 +08:00
|
|
|
common.MsgBase base = 1;
|
2021-01-14 14:24:14 +08:00
|
|
|
int64 dbID = 2;
|
|
|
|
int64 collectionID = 4;
|
|
|
|
}
|
|
|
|
|
|
|
|
message ShowSegmentRequest {
|
2021-01-16 15:06:19 +08:00
|
|
|
common.MsgBase base = 1;
|
2021-01-14 14:24:14 +08:00
|
|
|
int64 collectionID = 2;
|
|
|
|
int64 partitionID = 3;
|
|
|
|
}
|
|
|
|
|
|
|
|
message ShowSegmentResponse {
|
|
|
|
repeated int64 segmentIDs = 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
enum SegmentState {
|
|
|
|
SegmentNone = 0;
|
|
|
|
SegmentNotExist = 1;
|
|
|
|
SegmentGrowing = 2;
|
|
|
|
SegmentSealed = 3;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
message SegmentStatesRequest {
|
2021-01-16 15:06:19 +08:00
|
|
|
common.MsgBase base = 1;
|
2021-01-14 14:24:14 +08:00
|
|
|
int64 segmentID = 2;
|
|
|
|
}
|
|
|
|
|
|
|
|
message SegmentStatesResponse {
|
|
|
|
SegmentState state = 1;
|
|
|
|
uint64 create_time = 2;
|
|
|
|
uint64 sealed_time = 3;
|
2021-01-18 19:32:08 +08:00
|
|
|
repeated internal.MsgPosition start_positions = 4;
|
|
|
|
repeated internal.MsgPosition end_positions = 5;
|
2021-01-14 14:24:14 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
message InsertBinlogPathRequest {
|
2021-01-16 15:06:19 +08:00
|
|
|
common.MsgBase base = 1;
|
2021-01-14 14:24:14 +08:00
|
|
|
int64 segmentID = 2;
|
|
|
|
}
|
|
|
|
|
|
|
|
message InsertBinlogPathsResponse {
|
|
|
|
repeated int64 fieldIDs = 1;
|
|
|
|
repeated internal.StringList paths = 2;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
message InsertChannelRequest {
|
2021-01-16 15:06:19 +08:00
|
|
|
common.MsgBase base = 1;
|
2021-01-14 14:24:14 +08:00
|
|
|
int64 dbID = 2;
|
|
|
|
int64 collectionID = 3;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
message WatchDmChannelRequest {
|
2021-01-16 15:06:19 +08:00
|
|
|
common.MsgBase base = 1;
|
2021-01-19 12:10:49 +08:00
|
|
|
repeated string channelNames = 2;
|
2021-01-14 14:24:14 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
message FlushSegRequest {
|
2021-01-16 15:06:19 +08:00
|
|
|
common.MsgBase base = 1;
|
2021-01-14 14:24:14 +08:00
|
|
|
int64 dbID = 2;
|
|
|
|
int64 collectionID = 3;
|
|
|
|
repeated int64 segmentIDs = 4;
|
|
|
|
}
|
|
|
|
|
2021-01-15 17:09:41 +08:00
|
|
|
message SegmentInfo {
|
|
|
|
int64 segmentID=1;
|
|
|
|
int64 collectionID =2;
|
|
|
|
int64 partitionID=3;
|
|
|
|
repeated string insert_channels = 4;
|
|
|
|
uint64 open_time=5;
|
|
|
|
uint64 close_time=6;
|
|
|
|
int64 num_rows=7;
|
|
|
|
int64 mem_size=8;
|
|
|
|
}
|
2021-01-14 14:24:14 +08:00
|
|
|
|
|
|
|
service DataService {
|
|
|
|
|
|
|
|
rpc RegisterNode(RegisterNodeRequest) returns (RegisterNodeResponse) {}
|
|
|
|
rpc Flush(FlushRequest) returns (common.Status) {}
|
|
|
|
|
|
|
|
rpc AssignSegmentID(AssignSegIDRequest) returns (AssignSegIDResponse) {}
|
|
|
|
rpc ShowSegments(ShowSegmentRequest) returns (ShowSegmentResponse) {}
|
|
|
|
|
|
|
|
rpc GetSegmentStates(SegmentStatesRequest) returns (SegmentStatesResponse) {}
|
|
|
|
rpc GetInsertBinlogPaths(InsertBinlogPathRequest) returns (InsertBinlogPathsResponse) {}
|
|
|
|
|
|
|
|
rpc GetInsertChannels(InsertChannelRequest) returns (internal.StringList) {}
|
|
|
|
|
|
|
|
}
|