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 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288
|
package kafka
import (
"bufio"
"bytes"
"context"
"fmt"
"net"
"time"
"github.com/segmentio/kafka-go/protocol"
"github.com/segmentio/kafka-go/protocol/consumer"
"github.com/segmentio/kafka-go/protocol/syncgroup"
)
// SyncGroupRequest is the request structure for the SyncGroup function.
type SyncGroupRequest struct {
// Address of the kafka broker to sent he request to.
Addr net.Addr
// GroupID of the group to sync.
GroupID string
// The generation of the group.
GenerationID int
// The member ID assigned by the group.
MemberID string
// The unique identifier for the consumer instance.
GroupInstanceID string
// The name for the class of protocols implemented by the group being joined.
ProtocolType string
// The group protocol name.
ProtocolName string
// The group member assignments.
Assignments []SyncGroupRequestAssignment
}
// SyncGroupRequestAssignment represents an assignement for a goroup memeber.
type SyncGroupRequestAssignment struct {
// The ID of the member to assign.
MemberID string
// The member assignment.
Assignment GroupProtocolAssignment
}
// SyncGroupResponse is the response structure for the SyncGroup function.
type SyncGroupResponse struct {
// An error that may have occurred when attempting to sync the group.
//
// The errors contain the kafka error code. Programs may use the standard
// errors.Is function to test the error against kafka error codes.
Error error
// The amount of time that the broker throttled the request.
Throttle time.Duration
// The group protocol type.
ProtocolType string
// The group protocol name.
ProtocolName string
// The member assignment.
Assignment GroupProtocolAssignment
}
// GroupProtocolAssignment represents an assignment of topics and partitions for a group memeber.
type GroupProtocolAssignment struct {
// The topics and partitions assigned to the group memeber.
AssignedPartitions map[string][]int
// UserData for the assignemnt.
UserData []byte
}
// SyncGroup sends a sync group request to the coordinator and returns the response.
func (c *Client) SyncGroup(ctx context.Context, req *SyncGroupRequest) (*SyncGroupResponse, error) {
syncGroup := syncgroup.Request{
GroupID: req.GroupID,
GenerationID: int32(req.GenerationID),
MemberID: req.MemberID,
GroupInstanceID: req.GroupInstanceID,
ProtocolType: req.ProtocolType,
ProtocolName: req.ProtocolName,
Assignments: make([]syncgroup.RequestAssignment, 0, len(req.Assignments)),
}
for _, assignment := range req.Assignments {
assign := consumer.Assignment{
Version: consumer.MaxVersionSupported,
AssignedPartitions: make([]consumer.TopicPartition, 0, len(assignment.Assignment.AssignedPartitions)),
UserData: assignment.Assignment.UserData,
}
for topic, partitions := range assignment.Assignment.AssignedPartitions {
tp := consumer.TopicPartition{
Topic: topic,
Partitions: make([]int32, 0, len(partitions)),
}
for _, partition := range partitions {
tp.Partitions = append(tp.Partitions, int32(partition))
}
assign.AssignedPartitions = append(assign.AssignedPartitions, tp)
}
assignBytes, err := protocol.Marshal(consumer.MaxVersionSupported, assign)
if err != nil {
return nil, fmt.Errorf("kafka.(*Client).SyncGroup: %w", err)
}
syncGroup.Assignments = append(syncGroup.Assignments, syncgroup.RequestAssignment{
MemberID: assignment.MemberID,
Assignment: assignBytes,
})
}
m, err := c.roundTrip(ctx, req.Addr, &syncGroup)
if err != nil {
return nil, fmt.Errorf("kafka.(*Client).SyncGroup: %w", err)
}
r := m.(*syncgroup.Response)
var assignment consumer.Assignment
err = protocol.Unmarshal(r.Assignments, consumer.MaxVersionSupported, &assignment)
if err != nil {
return nil, fmt.Errorf("kafka.(*Client).SyncGroup: %w", err)
}
res := &SyncGroupResponse{
Throttle: makeDuration(r.ThrottleTimeMS),
Error: makeError(r.ErrorCode, ""),
ProtocolType: r.ProtocolType,
ProtocolName: r.ProtocolName,
Assignment: GroupProtocolAssignment{
AssignedPartitions: make(map[string][]int, len(assignment.AssignedPartitions)),
UserData: assignment.UserData,
},
}
partitions := map[string][]int{}
for _, topicPartition := range assignment.AssignedPartitions {
for _, partition := range topicPartition.Partitions {
partitions[topicPartition.Topic] = append(partitions[topicPartition.Topic], int(partition))
}
}
res.Assignment.AssignedPartitions = partitions
return res, nil
}
type groupAssignment struct {
Version int16
Topics map[string][]int32
UserData []byte
}
func (t groupAssignment) size() int32 {
sz := sizeofInt16(t.Version) + sizeofInt16(int16(len(t.Topics)))
for topic, partitions := range t.Topics {
sz += sizeofString(topic) + sizeofInt32Array(partitions)
}
return sz + sizeofBytes(t.UserData)
}
func (t groupAssignment) writeTo(wb *writeBuffer) {
wb.writeInt16(t.Version)
wb.writeInt32(int32(len(t.Topics)))
for topic, partitions := range t.Topics {
wb.writeString(topic)
wb.writeInt32Array(partitions)
}
wb.writeBytes(t.UserData)
}
func (t *groupAssignment) readFrom(r *bufio.Reader, size int) (remain int, err error) {
// I came across this case when testing for compatibility with bsm/sarama-cluster. It
// appears in some cases, sarama-cluster can send a nil array entry. Admittedly, I
// didn't look too closely at it.
if size == 0 {
t.Topics = map[string][]int32{}
return 0, nil
}
if remain, err = readInt16(r, size, &t.Version); err != nil {
return
}
if remain, err = readMapStringInt32(r, remain, &t.Topics); err != nil {
return
}
if remain, err = readBytes(r, remain, &t.UserData); err != nil {
return
}
return
}
func (t groupAssignment) bytes() []byte {
buf := bytes.NewBuffer(nil)
t.writeTo(&writeBuffer{w: buf})
return buf.Bytes()
}
type syncGroupRequestGroupAssignmentV0 struct {
// MemberID assigned by the group coordinator
MemberID string
// MemberAssignments holds client encoded assignments
//
// See consumer groups section of https://cwiki.apache.org/confluence/display/KAFKA/A+Guide+To+The+Kafka+Protocol
MemberAssignments []byte
}
func (t syncGroupRequestGroupAssignmentV0) size() int32 {
return sizeofString(t.MemberID) +
sizeofBytes(t.MemberAssignments)
}
func (t syncGroupRequestGroupAssignmentV0) writeTo(wb *writeBuffer) {
wb.writeString(t.MemberID)
wb.writeBytes(t.MemberAssignments)
}
type syncGroupRequestV0 struct {
// GroupID holds the unique group identifier
GroupID string
// GenerationID holds the generation of the group.
GenerationID int32
// MemberID assigned by the group coordinator
MemberID string
GroupAssignments []syncGroupRequestGroupAssignmentV0
}
func (t syncGroupRequestV0) size() int32 {
return sizeofString(t.GroupID) +
sizeofInt32(t.GenerationID) +
sizeofString(t.MemberID) +
sizeofArray(len(t.GroupAssignments), func(i int) int32 { return t.GroupAssignments[i].size() })
}
func (t syncGroupRequestV0) writeTo(wb *writeBuffer) {
wb.writeString(t.GroupID)
wb.writeInt32(t.GenerationID)
wb.writeString(t.MemberID)
wb.writeArray(len(t.GroupAssignments), func(i int) { t.GroupAssignments[i].writeTo(wb) })
}
type syncGroupResponseV0 struct {
// ErrorCode holds response error code
ErrorCode int16
// MemberAssignments holds client encoded assignments
//
// See consumer groups section of https://cwiki.apache.org/confluence/display/KAFKA/A+Guide+To+The+Kafka+Protocol
MemberAssignments []byte
}
func (t syncGroupResponseV0) size() int32 {
return sizeofInt16(t.ErrorCode) +
sizeofBytes(t.MemberAssignments)
}
func (t syncGroupResponseV0) writeTo(wb *writeBuffer) {
wb.writeInt16(t.ErrorCode)
wb.writeBytes(t.MemberAssignments)
}
func (t *syncGroupResponseV0) readFrom(r *bufio.Reader, sz int) (remain int, err error) {
if remain, err = readInt16(r, sz, &t.ErrorCode); err != nil {
return
}
if remain, err = readBytes(r, remain, &t.MemberAssignments); err != nil {
return
}
return
}
|