-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathkafkaTailer.go
160 lines (127 loc) · 4.29 KB
/
kafkaTailer.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
package go_tailer
import (
ctx "context"
"github.com/jdrews/go-tailer/fswatcher"
"sync"
"github.com/IBM/sarama"
configuration "github.com/jdrews/go-tailer/config"
"github.com/sirupsen/logrus"
)
type KafkaTailer struct {
lines chan *fswatcher.Line
errors chan fswatcher.Error
}
type consumer struct {
ready chan bool
lineChan chan *fswatcher.Line
errorChan chan fswatcher.Error
}
func (t KafkaTailer) Lines() chan *fswatcher.Line {
return t.lines
}
func (t KafkaTailer) Errors() chan fswatcher.Error {
return t.errors
}
func (t KafkaTailer) Close() {
logrus.Info("Close method called")
}
// RunKafkaTailer runs the kafka tailer
func RunKafkaTailer(cfg *configuration.InputConfig) fswatcher.FileTailer {
lineChan := make(chan *fswatcher.Line)
errorChan := make(chan fswatcher.Error)
tailer := &KafkaTailer{
lines: lineChan,
errors: errorChan,
}
go initKafkaConsumer(lineChan, errorChan, cfg)
return *tailer
}
func initKafkaConsumer(lineChan chan *fswatcher.Line, errorChan chan fswatcher.Error, cfg *configuration.InputConfig) {
version, err := sarama.ParseKafkaVersion(cfg.KafkaVersion)
if err != nil {
logrus.Panicf("[Kafka] Error parsing Kafka version: %v", err)
}
/**
* Construct a new Sarama configuration.
* The Kafka cluster version has to be defined before the consumer/producer is initialized.
*/
consumer := consumer{
ready: make(chan bool),
lineChan: lineChan,
errorChan: errorChan,
}
kafkaConfig := sarama.NewConfig()
kafkaConfig.Version = version
switch cfg.KafkaPartitionAssignor {
case "sticky":
kafkaConfig.Consumer.Group.Rebalance.Strategy = sarama.BalanceStrategySticky
case "roundrobin":
kafkaConfig.Consumer.Group.Rebalance.Strategy = sarama.BalanceStrategyRoundRobin
case "range":
kafkaConfig.Consumer.Group.Rebalance.Strategy = sarama.BalanceStrategyRange
default:
consumer.errorChan <- fswatcher.NewError(fswatcher.NotSpecified, err, "[Kafka] Unrecognized consumer group partition assignor!")
}
if cfg.KafkaConsumeFromOldest {
kafkaConfig.Consumer.Offsets.Initial = sarama.OffsetOldest
}
/**
* Setup a new Sarama consumer group
*/
ctx, cancel := ctx.WithCancel(ctx.Background())
client, err := sarama.NewConsumerGroup(cfg.KafkaBrokers, cfg.KafkaConsumerGroupName, kafkaConfig)
if err != nil {
consumer.errorChan <- fswatcher.NewError(fswatcher.NotSpecified, err, "[Kafka] Error creating client")
}
wg := &sync.WaitGroup{}
wg.Add(1)
go func() {
defer wg.Done()
for {
// `Consume` should be called inside an infinite loop, when a
// server-side rebalance happens, the consumer session will need to be
// recreated to get the new claims
if err := client.Consume(ctx, cfg.KafkaTopics, &consumer); err != nil {
consumer.errorChan <- fswatcher.NewError(fswatcher.NotSpecified, err, "[Kafka] Error from consumer")
}
// check if context was cancelled, signaling that the consumer should stop
if ctx.Err() != nil {
logrus.Infof("[Kafka] Consumer %s goroutine exiting.", cfg.KafkaConsumerGroupName)
return
}
consumer.ready = make(chan bool)
}
}()
<-consumer.ready // Await till the consumer has been set up
logrus.Infof("[Kafka] Consumer %s active.", cfg.KafkaConsumerGroupName)
select {
case <-ctx.Done():
logrus.Info("[Kafka] Consumer terminating: context cancelled")
}
cancel()
wg.Wait()
if err = client.Close(); err != nil {
consumer.errorChan <- fswatcher.NewError(fswatcher.NotSpecified, err, "[Kafka] Error closing client")
return
}
logrus.Info("[Kafka] Client has been closed")
}
// Setup is run at the beginning of a new session, before ConsumeClaim
func (consumer *consumer) Setup(sarama.ConsumerGroupSession) error {
// Mark the consumer as ready
close(consumer.ready)
return nil
}
// Cleanup is run at the end of a session, once all ConsumeClaim goroutines have exited
func (consumer *consumer) Cleanup(sarama.ConsumerGroupSession) error {
return nil
}
// ConsumeClaim must start a consumer loop of ConsumerGroupClaim's Messages().
func (consumer *consumer) ConsumeClaim(session sarama.ConsumerGroupSession, claim sarama.ConsumerGroupClaim) error {
for message := range claim.Messages() {
logrus.Debugf("[Kafka] Message content: %s", string(message.Value))
session.MarkMessage(message, "")
consumer.lineChan <- &fswatcher.Line{Line: string(message.Value)}
}
return nil
}