-
Notifications
You must be signed in to change notification settings - Fork 23
/
consumer_group.go
226 lines (211 loc) · 6.38 KB
/
consumer_group.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
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
package kafka
import (
"bytes"
"context"
"fmt"
"sync"
"time"
"github.com/tencentmusic/evhub/internal/processor/define"
"github.com/Shopify/sarama"
"github.com/gomodule/redigo/redis"
"github.com/tencentmusic/evhub/internal/processor/event"
cc "github.com/tencentmusic/evhub/pkg/conf_connector"
"github.com/tencentmusic/evhub/pkg/log"
"github.com/tencentmusic/evhub/pkg/util/routine"
"go.uber.org/ratelimit"
)
// ConsumerGroup is a consumer of Kafka
type ConsumerGroup struct {
// a consumer group for Kafka topic
GroupID string
// If is OK, representing auto commit.
OffsetsAutoCommitEnable bool
// flow control batch number for Kafka consumer group
FlowControlBatchNum int
// initial offset timeout for Kafka consumer group
InitOffsetGetOffsetTimeout int64
// initial offset period for Kafka consumer group
InitOffsetGetOffsetPeroid int64
// a processor of configuration
confInfo *cc.ProcessorConfInfo
// event handler
Event *event.Event
// redis pool
RedisPool *redis.Pool
// a consumer group for Kafka topic
ConsumerGroup sarama.ConsumerGroup
// context cancel function for consumer group
cancelFunc context.CancelFunc
// the stop controller of flow control
StopWg sync.WaitGroup
}
const (
// KeyTopicGroupOffset is the key of the consumer group
KeyTopicGroupOffset = "evhub:processor:%v:%v:%v"
// CommitTimeout commit timeout
CommitTimeout = 2
)
// TopicGroupOffsetKey returns the key of consumer group
func TopicGroupOffsetKey(topic string, group string, partition int32) string {
return fmt.Sprintf(KeyTopicGroupOffset, topic, group, partition)
}
// Setup is the beginning of the processor
func (s *ConsumerGroup) Setup(session sarama.ConsumerGroupSession) error {
log.Infof("session info:%v", session.Claims())
return nil
}
// Cleanup is the end of the processor
func (s *ConsumerGroup) Cleanup(sarama.ConsumerGroupSession) error {
log.Infof("session cleanup")
return nil
}
// Msg is the message of the consumer group
type Msg struct {
Message *sarama.ConsumerMessage
}
// ConsumeClaim is processing the message
func (s *ConsumerGroup) ConsumeClaim(session sarama.ConsumerGroupSession, claim sarama.ConsumerGroupClaim) error {
defer routine.Recover()
msg := &Msg{}
s.StopWg.Add(1)
// flow control
if s.confInfo.IsFlowControl {
go s.flowControlConsumer(session, claim, msg)
} else {
go s.partitionConsumer(session, claim, msg)
}
log.Infof("message:%v", msg.Message)
// listening rebalance
<-session.Context().Done()
log.Infof("consume claim success handle "+
"rabalance topic:%v group id:%v partition:%v msg:%v message:%v",
claim.Topic(), s.GroupID, claim.Partition(), msg, msg.Message)
return nil
}
// flowControlConsumer is a flow control consumer
func (s *ConsumerGroup) flowControlConsumer(session sarama.ConsumerGroupSession,
claim sarama.ConsumerGroupClaim, msg *Msg) {
defer func() {
routine.Recover()
s.StopWg.Done()
}()
// rate limit consumer group
rl := ratelimit.New(s.confInfo.FlowControlStrategy.QPS)
wg := sync.WaitGroup{}
// flow control batch number
batchIndex := 0
t := time.NewTimer(time.Second * time.Duration(CommitTimeout))
var markMessageOffset int64
var ok bool
var message *sarama.ConsumerMessage
for {
select {
case <-t.C:
wg.Wait()
if msg.Message != nil && msg.Message.Offset > markMessageOffset {
markMessageOffset = msg.Message.Offset
session.MarkMessage(msg.Message, "")
if !s.OffsetsAutoCommitEnable {
session.Commit()
}
log.Debugf("mark message partition:%v "+
"offset:%v topic:%v", msg.Message.Partition,
msg.Message.Offset, msg.Message.Topic)
}
batchIndex = 0
case message, ok = <-claim.Messages():
if !ok {
log.Infof("handle report data chan success")
goto Loop
}
msg.Message = message
// flow control
rl.Take()
batchIndex++
wg.Add(1)
// handle message
go s.handleConsumeMessage(*msg.Message, &wg)
if batchIndex == s.FlowControlBatchNum {
wg.Wait()
markMessageOffset = msg.Message.Offset
session.MarkMessage(msg.Message, "")
if !s.OffsetsAutoCommitEnable {
session.Commit()
}
log.Debugf("mark message partition:%v offset:%v"+
" topic:%v", msg.Message.Partition, msg.Message.Offset,
msg.Message.Topic)
batchIndex = 0
}
}
t.Stop()
t = time.NewTimer(time.Second * time.Duration(CommitTimeout))
}
Loop:
// stop consumer
log.Infof("consumer stop success")
}
// partitionConsumer is a partition consumer
// nolint
func (s *ConsumerGroup) partitionConsumer(session sarama.ConsumerGroupSession,
claim sarama.ConsumerGroupClaim, msg *Msg) {
defer routine.Recover()
defer s.StopWg.Done()
var ok bool
var message *sarama.ConsumerMessage
for {
select {
case message, ok = <-claim.Messages():
if !ok {
log.Infof("handle report data chan success")
goto Loop
}
msg.Message = message
log.Debugf("message claimed: key = %s, topic = %s partition = %v, "+
"offset = %v value = %s, timestamp = %v",
string(msg.Message.Key), msg.Message.Topic, msg.Message.Partition,
msg.Message.Offset, string(msg.Message.Value), msg.Message.Timestamp)
var buff bytes.Buffer
buff.Write(msg.Message.Value)
s.ConsumeMessage(buff.Bytes())
log.Debugf("handle success %v %v %v", msg.Message.Topic,
msg.Message.Partition, msg.Message.Offset)
session.MarkMessage(msg.Message, "")
if !s.OffsetsAutoCommitEnable {
// manual commit
session.Commit()
}
log.Debugf("handle success %v %v %v", msg.Message.Topic,
msg.Message.Partition, msg.Message.Offset)
}
}
Loop:
log.Infof("consumer stop success")
}
// handleConsumeMessage is processing the message
// nolint
func (s *ConsumerGroup) handleConsumeMessage(message sarama.ConsumerMessage, wg *sync.WaitGroup) {
defer func() {
routine.Recover()
wg.Done()
}()
log.Debugf("message claimed: key = %s, "+
"topic = %s partition = %v, offset = %v value = %s, timestamp = %v",
string(message.Key), message.Topic, message.Partition,
message.Offset, string(message.Value), message.Timestamp)
s.ConsumeMessage(message.Value)
}
// ConsumeMessage consumer messages
func (s *ConsumerGroup) ConsumeMessage(msg []byte) {
if err := s.Event.HandleEvent(msg, define.EventTypeExternal); err != nil {
log.Infof("handle event fn err: %v", err)
}
}
// Stop stops the consumer group gracefully.
func (s *ConsumerGroup) Stop() error {
s.cancelFunc()
s.StopWg.Wait()
s.ConsumerGroup.Close()
log.Infof("stop consumer group success kafka consumer:%v", s)
return nil
}