mirror of
https://github.com/seaweedfs/seaweedfs.git
synced 2024-01-19 02:48:24 +00:00
89a1fd1751
commit4827425146
Author: chrislu <chris.lu@gmail.com> Date: Sat Sep 16 15:05:38 2023 -0700 balancer works commit3b50139f68
Author: chrislu <chris.lu@gmail.com> Date: Fri Sep 15 22:22:32 2023 -0700 comments commit7f685ce7ba
Author: chrislu <chris.lu@gmail.com> Date: Fri Sep 15 22:20:05 2023 -0700 adjust APIs commit436d99443b
Author: chrislu <chris.lu@gmail.com> Date: Thu Sep 14 23:49:05 2023 -0700 receive broker stats commitb771fefa37
Merge:0a851ec00
890881037
Author: chrislu <chris.lu@gmail.com> Date: Wed Sep 13 00:03:47 2023 -0700 Merge branch 'master' into sub commit0a851ec00b
Author: chrislu <chris.lu@gmail.com> Date: Sun Sep 10 22:01:25 2023 -0700 Create balancer.go commit39941edc0b
Author: chrislu <chris.lu@gmail.com> Date: Thu Sep 7 23:55:19 2023 -0700 add publisher shutdown commit875f562779
Author: chrislu <chris.lu@gmail.com> Date: Wed Sep 6 23:16:41 2023 -0700 server side send response at least once per second commit984b6c54cf
Author: chrislu <chris.lu@gmail.com> Date: Wed Sep 6 23:15:29 2023 -0700 ack interval 128 commit2492a45499
Author: chrislu <chris.lu@gmail.com> Date: Wed Sep 6 22:39:46 2023 -0700 ack interval commitba67e6ca29
Author: chrislu <chris.lu@gmail.com> Date: Mon Sep 4 21:43:50 2023 -0700 api for sub commit9e4f985698
Author: chrislu <chris.lu@gmail.com> Date: Mon Sep 4 21:43:30 2023 -0700 publish, benchmark commitcb470d44df
Author: chrislu <chris.lu@gmail.com> Date: Fri Sep 1 00:36:51 2023 -0700 can pub and sub commit1eb2da46d5
Author: chrislu <chris.lu@gmail.com> Date: Mon Aug 28 09:02:12 2023 -0700 connect and publish commit504ae8383a
Author: chrislu <chris.lu@gmail.com> Date: Mon Aug 28 09:01:25 2023 -0700 protoc version commitdbcba75271
Author: chrislu <chris.lu@gmail.com> Date: Sun Aug 27 18:59:04 2023 -0700 rename to lookup commitc9caf33119
Author: chrislu <chris.lu@gmail.com> Date: Sun Aug 27 18:33:46 2023 -0700 move functions commit4d6c18d86f
Author: chrislu <chris.lu@gmail.com> Date: Sun Aug 27 17:50:59 2023 -0700 pub sub initial tests commit4eb8e8624d
Author: chrislu <chris.lu@gmail.com> Date: Sun Aug 27 13:14:39 2023 -0700 rename commit1990456670
Author: chrislu <chris.lu@gmail.com> Date: Sun Aug 27 13:13:14 2023 -0700 sub commit905911853d
Author: chrislu <chris.lu@gmail.com> Date: Sat Aug 26 13:39:21 2023 -0700 adjust proto
214 lines
5.3 KiB
Protocol Buffer
214 lines
5.3 KiB
Protocol Buffer
syntax = "proto3";
|
|
|
|
package messaging_pb;
|
|
|
|
option go_package = "github.com/seaweedfs/seaweedfs/weed/pb/mq_pb";
|
|
option java_package = "seaweedfs.mq";
|
|
option java_outer_classname = "MessagQueueProto";
|
|
|
|
//////////////////////////////////////////////////
|
|
|
|
service SeaweedMessaging {
|
|
|
|
// control plane
|
|
rpc FindBrokerLeader (FindBrokerLeaderRequest) returns (FindBrokerLeaderResponse) {
|
|
}
|
|
rpc AssignSegmentBrokers (AssignSegmentBrokersRequest) returns (AssignSegmentBrokersResponse) {
|
|
}
|
|
rpc CheckSegmentStatus (CheckSegmentStatusRequest) returns (CheckSegmentStatusResponse) {
|
|
}
|
|
rpc CheckBrokerLoad (CheckBrokerLoadRequest) returns (CheckBrokerLoadResponse) {
|
|
}
|
|
|
|
// control plane for balancer
|
|
rpc ConnectToBalancer (stream ConnectToBalancerRequest) returns (stream ConnectToBalancerResponse) {
|
|
}
|
|
// control plane for topic partitions
|
|
rpc LookupTopicBrokers (LookupTopicBrokersRequest) returns (LookupTopicBrokersResponse) {
|
|
}
|
|
// a pub client will call this to get the topic partitions assignment
|
|
rpc RequestTopicPartitions (RequestTopicPartitionsRequest) returns (RequestTopicPartitionsResponse) {
|
|
}
|
|
rpc AssignTopicPartitions (AssignTopicPartitionsRequest) returns (AssignTopicPartitionsResponse) {
|
|
}
|
|
rpc CheckTopicPartitionsStatus (CheckTopicPartitionsStatusRequest) returns (CheckTopicPartitionsStatusResponse) {
|
|
}
|
|
|
|
// data plane
|
|
rpc Publish (stream PublishRequest) returns (stream PublishResponse) {
|
|
}
|
|
rpc Subscribe (SubscribeRequest) returns (stream SubscribeResponse) {
|
|
}
|
|
}
|
|
|
|
//////////////////////////////////////////////////
|
|
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;
|
|
}
|
|
|
|
//////////////////////////////////////////////////
|
|
|
|
message FindBrokerLeaderRequest {
|
|
string filer_group = 1;
|
|
}
|
|
|
|
message FindBrokerLeaderResponse {
|
|
string broker = 1;
|
|
}
|
|
|
|
message Topic {
|
|
string namespace = 1;
|
|
string name = 2;
|
|
}
|
|
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;
|
|
|
|
}
|
|
|
|
//////////////////////////////////////////////////
|
|
message BrokerStats {
|
|
int32 topic_partition_count = 1;
|
|
int32 consumer_count = 2;
|
|
int32 cpu_usage_percent = 3;
|
|
}
|
|
message ConnectToBalancerRequest {
|
|
message InitMessage {
|
|
string broker = 1;
|
|
}
|
|
oneof message {
|
|
InitMessage init = 1;
|
|
BrokerStats stats = 2;
|
|
}
|
|
}
|
|
message ConnectToBalancerResponse {
|
|
}
|
|
//////////////////////////////////////////////////
|
|
message LookupTopicBrokersRequest {
|
|
Topic topic = 1;
|
|
bool is_for_publish = 2;
|
|
}
|
|
message LookupTopicBrokersResponse {
|
|
Topic topic = 1;
|
|
repeated BrokerPartitionAssignment broker_partition_assignments = 2;
|
|
}
|
|
message BrokerPartitionAssignment {
|
|
Partition partition = 1;
|
|
string leader_broker = 2;
|
|
repeated string follower_brokers = 3;
|
|
}
|
|
|
|
message RequestTopicPartitionsRequest {
|
|
Topic topic = 1;
|
|
int32 partition_count = 2;
|
|
}
|
|
message RequestTopicPartitionsResponse {
|
|
repeated BrokerPartitionAssignment broker_partition_assignments = 1;
|
|
}
|
|
|
|
message AssignTopicPartitionsRequest {
|
|
Topic topic = 1;
|
|
repeated BrokerPartitionAssignment broker_partition_assignments = 2;
|
|
bool is_leader = 3;
|
|
}
|
|
message AssignTopicPartitionsResponse {
|
|
}
|
|
|
|
message CheckTopicPartitionsStatusRequest {
|
|
string namespace = 1;
|
|
string topic = 2;
|
|
BrokerPartitionAssignment broker_partition_assignment = 3;
|
|
bool should_cancel_if_not_match = 4;
|
|
}
|
|
message CheckTopicPartitionsStatusResponse {
|
|
repeated BrokerPartitionAssignment broker_partition_assignments = 1;
|
|
}
|
|
|
|
//////////////////////////////////////////////////
|
|
message DataMessage {
|
|
bytes key = 1;
|
|
bytes value = 2;
|
|
}
|
|
message PublishRequest {
|
|
message InitMessage {
|
|
Topic topic = 1;
|
|
Partition partition = 2;
|
|
int32 ack_interval = 3;
|
|
}
|
|
oneof message {
|
|
InitMessage init = 1;
|
|
DataMessage data = 2;
|
|
}
|
|
int64 sequence = 3;
|
|
}
|
|
message PublishResponse {
|
|
int64 ack_sequence = 1;
|
|
string error = 2;
|
|
string redirect_to_broker = 3;
|
|
}
|
|
message SubscribeRequest {
|
|
message Consumer {
|
|
string consumer_group = 1;
|
|
string consumer_id = 2;
|
|
string client_id = 3;
|
|
}
|
|
message Cursor {
|
|
Topic topic = 1;
|
|
Partition partition = 2;
|
|
oneof offset {
|
|
int64 start_offset = 3;
|
|
int64 start_timestamp_ns = 4;
|
|
}
|
|
string filter = 5;
|
|
}
|
|
Consumer consumer = 1;
|
|
Cursor cursor = 2;
|
|
}
|
|
message SubscribeResponse {
|
|
message CtrlMessage {
|
|
string error = 1;
|
|
string redirect_to_broker = 2;
|
|
}
|
|
oneof message {
|
|
CtrlMessage ctrl = 1;
|
|
DataMessage data = 2;
|
|
}
|
|
}
|