seaweedfs/weed/pb/mq.proto

98 lines
2.1 KiB
Protocol Buffer
Raw Normal View History

2020-04-16 17:21:23 +08:00
syntax = "proto3";
package messaging_pb;
option go_package = "github.com/seaweedfs/seaweedfs/weed/pb/mq_pb";
2022-07-03 15:29:25 +08:00
option java_package = "seaweedfs.mq";
option java_outer_classname = "MessagQueueProto";
2020-04-16 17:21:23 +08:00
//////////////////////////////////////////////////
service SeaweedMessaging {
2022-08-01 04:23:44 +08:00
// control plane
2022-07-11 15:20:27 +08:00
rpc FindBrokerLeader (FindBrokerLeaderRequest) returns (FindBrokerLeaderResponse) {
}
rpc AssignSegmentBrokers (AssignSegmentBrokersRequest) returns (AssignSegmentBrokersResponse) {
}
rpc CheckSegmentStatus (CheckSegmentStatusRequest) returns (CheckSegmentStatusResponse) {
}
rpc CheckBrokerLoad (CheckBrokerLoadRequest) returns (CheckBrokerLoadResponse) {
2020-05-05 17:05:28 +08:00
}
2022-08-01 04:23:44 +08:00
// data plane
rpc Publish (stream PublishRequest) returns (stream PublishResponse) {
}
2020-04-16 17:21:23 +08:00
}
2022-07-17 01:49:34 +08: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 17:21:23 +08:00
//////////////////////////////////////////////////
2022-07-11 03:11:37 +08:00
message FindBrokerLeaderRequest {
2022-07-11 15:20:27 +08:00
string filer_group = 1;
2020-05-05 17:05:28 +08:00
}
2022-07-11 03:11:37 +08:00
message FindBrokerLeaderResponse {
2020-05-05 17:05:28 +08:00
string broker = 1;
}
2022-07-11 15:20:27 +08: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-08-01 04:23:44 +08:00
//////////////////////////////////////////////////
message PublishRequest {
message InitMessage {
Segment segment = 1;
}
InitMessage init = 1;
bytes message = 2;
}
message PublishResponse {
int64 ack_sequence = 1;
bool is_closed = 2;
}