forked from segmentio/kafka-go
-
Notifications
You must be signed in to change notification settings - Fork 0
/
electleaders.go
89 lines (74 loc) · 2.22 KB
/
electleaders.go
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
package kafka
import (
"context"
"net"
"time"
"github.com/segmentio/kafka-go/protocol/electleaders"
)
// ElectLeadersRequest is a request to the ElectLeaders API.
type ElectLeadersRequest struct {
// Addr is the address of the kafka broker to send the request to.
Addr net.Addr
// Topic is the name of the topic to do the leader elections in.
Topic string
// Partitions is the list of partitions to run leader elections for.
Partitions []int
// Timeout is the amount of time to wait for the election to run.
Timeout time.Duration
}
// ElectLeadersResponse is a response from the ElectLeaders API.
type ElectLeadersResponse struct {
// ErrorCode is set to a non-nil value if a top-level error occurred.
Error error
// PartitionResults contains the results for each partition leader election.
PartitionResults []ElectLeadersResponsePartitionResult
}
// ElectLeadersResponsePartitionResult contains the response details for a single partition.
type ElectLeadersResponsePartitionResult struct {
// Partition is the ID of the partition.
Partition int
// Error is set to a non-nil value if an error occurred electing leaders
// for this partition.
Error error
}
func (c *Client) ElectLeaders(
ctx context.Context,
req *ElectLeadersRequest,
) (*ElectLeadersResponse, error) {
partitions32 := []int32{}
for _, partition := range req.Partitions {
partitions32 = append(partitions32, int32(partition))
}
protoResp, err := c.roundTrip(
ctx,
req.Addr,
&electleaders.Request{
TopicPartitions: []electleaders.RequestTopicPartitions{
{
Topic: req.Topic,
PartitionIDs: partitions32,
},
},
TimeoutMs: int32(req.Timeout.Milliseconds()),
},
)
if err != nil {
return nil, err
}
apiResp := protoResp.(*electleaders.Response)
resp := &ElectLeadersResponse{
Error: makeError(apiResp.ErrorCode, ""),
}
for _, topicResult := range apiResp.ReplicaElectionResults {
for _, partitionResult := range topicResult.PartitionResults {
resp.PartitionResults = append(
resp.PartitionResults,
ElectLeadersResponsePartitionResult{
Partition: int(partitionResult.PartitionID),
Error: makeError(partitionResult.ErrorCode, partitionResult.ErrorMessage),
},
)
}
}
return resp, nil
}