forked from segmentio/kafka-go
-
Notifications
You must be signed in to change notification settings - Fork 0
/
heartbeat.go
65 lines (51 loc) · 1.6 KB
/
heartbeat.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
package kafka
import (
"context"
"fmt"
"net"
"time"
heartbeatAPI "github.com/segmentio/kafka-go/protocol/heartbeat"
)
// HeartbeatRequest represents a heartbeat sent to kafka to indicate consume liveness.
type HeartbeatRequest struct {
// Address of the kafka broker to send the request to.
Addr net.Addr
// GroupID is the ID of the group.
GroupID string
// GenerationID is the current generation for the group.
GenerationID int
// MemberID is the ID of the group member.
MemberID string
// GroupInstanceID is a unique identifier for the consumer.
GroupInstanceID string
}
// HeartbeatResponse represents a response from a heartbeat request.
type HeartbeatResponse struct {
// Error is set to non-nil if an error occurred.
Error error
// The amount of time that the broker throttled the request.
//
// This field will be zero if the kafka broker did not support the
// Heartbeat API in version 1 or above.
Throttle time.Duration
}
// Heartbeat sends a heartbeat request to a kafka broker and returns the response.
func (c *Client) Heartbeat(ctx context.Context, req *HeartbeatRequest) (*HeartbeatResponse, error) {
m, err := c.roundTrip(ctx, req.Addr, &heartbeatAPI.Request{
GroupID: req.GroupID,
GenerationID: int32(req.GenerationID),
MemberID: req.MemberID,
GroupInstanceID: req.GroupInstanceID,
})
if err != nil {
return nil, fmt.Errorf("kafka.(*Client).Heartbeat: %w", err)
}
res := m.(*heartbeatAPI.Response)
ret := &HeartbeatResponse{
Throttle: makeDuration(res.ThrottleTimeMs),
}
if res.ErrorCode != 0 {
ret.Error = Error(res.ErrorCode)
}
return ret, nil
}