forked from opencurve/curve
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcli.proto
executable file
·111 lines (94 loc) · 3.04 KB
/
cli.proto
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
/*
* Copyright (c) 2020 NetEase Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
syntax="proto2";
package curve.chunkserver;
option cc_generic_services = true;
option go_package = "proto/cli";
// 这里都用 logicPoolId, copysetId,进入 rpc service 之后,会转换成 string
// 类型的 groupId,在传给 raft
// | groupId |
// | logicPoolId | copysetId |
message AddPeerRequest {
required uint32 logicPoolId = 1; // logicPoolId 实际上 uint16,但是 proto 没有 uint16
required uint32 copysetId = 2;
required string leader_id = 3;
required string peer_id = 4;
}
message AddPeerResponse {
repeated string old_peers = 1;
repeated string new_peers = 2;
}
message RemovePeerRequest {
required uint32 logicPoolId = 1;
required uint32 copysetId = 2;
required string leader_id = 3;
required string peer_id = 4;
}
message RemovePeerResponse {
repeated string old_peers = 1;
repeated string new_peers = 2;
}
message ChangePeersRequest {
required uint32 logicPoolId = 1;
required uint32 copysetId = 2;
required string leader_id = 3;
repeated string new_peers = 4;
}
message ChangePeersResponse {
repeated string old_peers = 1;
repeated string new_peers = 2;
}
message SnapshotRequest {
required uint32 logicPoolId = 1;
required uint32 copysetId = 2;
optional string peer_id = 3;
};
message ResetPeerRequest {
required uint32 logicPoolId = 1;
required uint32 copysetId = 2;
required string peer_id = 3;
repeated string old_peers = 4;
repeated string new_peers = 5;
}
message TransferLeaderRequest {
required uint32 logicPoolId = 1;
required uint32 copysetId = 2;
required string leader_id = 3;
optional string peer_id = 4;
}
message TransferLeaderResponse {}
message ResetPeerResponse {
}
message SnapshotResponse {
}
message GetLeaderRequest {
required uint32 logicPoolId = 1;
required uint32 copysetId = 2;
optional string peer_id = 3;
}
message GetLeaderResponse {
required string leader_id = 1;
}
// service
service CliService {
rpc add_peer(AddPeerRequest) returns (AddPeerResponse);
rpc remove_peer(RemovePeerRequest) returns (RemovePeerResponse);
rpc change_peers(ChangePeersRequest) returns (ChangePeersResponse);
rpc reset_peer(ResetPeerRequest) returns (ResetPeerResponse);
rpc snapshot(SnapshotRequest) returns (SnapshotResponse);
rpc get_leader(GetLeaderRequest) returns (GetLeaderResponse);
rpc transfer_leader(TransferLeaderRequest) returns (TransferLeaderResponse);
};