2020-04-16 09:21:23 +00:00
|
|
|
syntax = "proto3";
|
|
|
|
|
|
|
|
package messaging_pb;
|
|
|
|
|
2022-07-29 07:17:28 +00:00
|
|
|
option go_package = "github.com/seaweedfs/seaweedfs/weed/pb/mq_pb";
|
2022-07-03 07:29:25 +00:00
|
|
|
option java_package = "seaweedfs.mq";
|
|
|
|
option java_outer_classname = "MessagQueueProto";
|
2020-04-16 09:21:23 +00:00
|
|
|
|
|
|
|
//////////////////////////////////////////////////
|
|
|
|
|
|
|
|
service SeaweedMessaging {
|
|
|
|
|
2022-07-31 20:23:44 +00:00
|
|
|
// control plane
|
2022-07-11 07:20:27 +00:00
|
|
|
rpc FindBrokerLeader (FindBrokerLeaderRequest) returns (FindBrokerLeaderResponse) {
|
|
|
|
}
|
|
|
|
rpc AssignSegmentBrokers (AssignSegmentBrokersRequest) returns (AssignSegmentBrokersResponse) {
|
|
|
|
}
|
|
|
|
rpc CheckSegmentStatus (CheckSegmentStatusRequest) returns (CheckSegmentStatusResponse) {
|
|
|
|
}
|
|
|
|
rpc CheckBrokerLoad (CheckBrokerLoadRequest) returns (CheckBrokerLoadResponse) {
|
2020-05-05 09:05:28 +00:00
|
|
|
}
|
|
|
|
|
2022-07-31 20:23:44 +00:00
|
|
|
// data plane
|
|
|
|
rpc Publish (stream PublishRequest) returns (stream PublishResponse) {
|
|
|
|
}
|
2020-04-16 09:21:23 +00:00
|
|
|
}
|
|
|
|
|
2022-07-16 17:49:34 +00:00
|
|
|
//////////////////////////////////////////////////
|
|
|
|
message SegmentInfo {
|
|
|
|
Segment segment = 1;
|
|
|
|
int64 start_ts_ns = 2;
|
|
|
|
repeated string brokers = 3;
|
|
|
|
int64 stop_ts_ns = 4;
|
|
|
|
repeated int32 previous_segments = 5;
|
|
|
|
repeated int32 next_segments = 6;
|
|
|
|
}
|
|
|
|
|
2020-04-16 09:21:23 +00:00
|
|
|
//////////////////////////////////////////////////
|
|
|
|
|
2022-07-10 19:11:37 +00:00
|
|
|
message FindBrokerLeaderRequest {
|
2022-07-11 07:20:27 +00:00
|
|
|
string filer_group = 1;
|
2020-05-05 09:05:28 +00:00
|
|
|
}
|
|
|
|
|
2022-07-10 19:11:37 +00:00
|
|
|
message FindBrokerLeaderResponse {
|
2020-05-05 09:05:28 +00:00
|
|
|
string broker = 1;
|
|
|
|
}
|
2022-07-11 07:20:27 +00:00
|
|
|
|
|
|
|
message Partition {
|
|
|
|
int32 ring_size = 1;
|
|
|
|
int32 range_start = 2;
|
|
|
|
int32 range_stop = 3;
|
|
|
|
}
|
|
|
|
|
|
|
|
message Segment {
|
|
|
|
string namespace = 1;
|
|
|
|
string topic = 2;
|
|
|
|
int32 id = 3;
|
|
|
|
Partition partition = 4;
|
|
|
|
}
|
|
|
|
|
|
|
|
message AssignSegmentBrokersRequest {
|
|
|
|
Segment segment = 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
message AssignSegmentBrokersResponse {
|
|
|
|
repeated string brokers = 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
message CheckSegmentStatusRequest {
|
|
|
|
Segment segment = 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
message CheckSegmentStatusResponse {
|
|
|
|
bool is_active = 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
message CheckBrokerLoadRequest {
|
|
|
|
}
|
|
|
|
|
|
|
|
message CheckBrokerLoadResponse {
|
|
|
|
int64 message_count = 1;
|
|
|
|
int64 bytes_count = 2;
|
|
|
|
|
|
|
|
}
|
2022-07-31 20:23:44 +00:00
|
|
|
|
|
|
|
//////////////////////////////////////////////////
|
|
|
|
message PublishRequest {
|
|
|
|
message InitMessage {
|
|
|
|
Segment segment = 1;
|
|
|
|
}
|
|
|
|
InitMessage init = 1;
|
|
|
|
bytes message = 2;
|
|
|
|
}
|
|
|
|
message PublishResponse {
|
|
|
|
int64 ack_sequence = 1;
|
|
|
|
bool is_closed = 2;
|
|
|
|
}
|