forked from qntfy/frafka
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsource.go
197 lines (173 loc) · 5.1 KB
/
source.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
package frafka
import (
"fmt"
"strings"
"time"
"github.com/confluentinc/confluent-kafka-go/kafka"
"github.com/pkg/errors"
"github.com/qntfy/frizzle"
"github.com/qntfy/frizzle/common"
"github.com/spf13/viper"
)
var (
_ frizzle.Source = (*Source)(nil)
_ frizzle.Eventer = (*Source)(nil)
)
var (
kafkaEventChannelSize = 100
kafkaSessionTimeoutMS = 6000
stopCloseTimeout = 3 * time.Second
)
// Source encapsulates a kafka consumer for receiving and tracking Msgs
type Source struct {
cons *kafka.Consumer
topics []string
msgChan chan frizzle.Msg
unAcked *common.UnAcked
quitChan chan struct{}
doneChan chan struct{}
evtChan chan frizzle.Event
}
// InitSource initializes a kafka Source
func InitSource(config *viper.Viper) (*Source, error) {
if !config.IsSet("kafka_brokers") || !config.IsSet("kafka_topics") || !config.IsSet("kafka_consumer_group") {
return nil, errors.New("brokers, topics and consumer_group must be set for kafka Source")
}
startOffset := "earliest"
if config.GetBool("kafka_consume_latest_first") {
startOffset = "latest"
}
brokers := strings.Join(config.GetStringSlice("kafka_brokers"), ",")
config.SetDefault("kafka_max_buffer_kb", 16384) // 16MB
maxBufferKB := config.GetInt("kafka_max_buffer_kb")
kCfg := kafka.ConfigMap{
"bootstrap.servers": brokers, // expects CSV
"group.id": config.GetString("kafka_consumer_group"),
"session.timeout.ms": kafkaSessionTimeoutMS,
"go.events.channel.enable": true, // support c.Events()
"go.events.channel.size": kafkaEventChannelSize,
"go.application.rebalance.enable": true, // we handle partition updates (needed for offset management)
"queued.max.messages.kbytes": maxBufferKB, // limit memory usage for the consumer prefetch buffer; note there is one buffer per topic+partition
"default.topic.config": kafka.ConfigMap{
"auto.offset.reset": startOffset,
},
}
c, err := kafka.NewConsumer(&kCfg)
if err != nil {
return nil, err
}
s := &Source{
cons: c,
topics: config.GetStringSlice("kafka_topics"),
msgChan: make(chan frizzle.Msg),
unAcked: common.NewUnAcked(),
quitChan: make(chan struct{}),
doneChan: make(chan struct{}),
evtChan: make(chan frizzle.Event),
}
if err = s.Ping(); err != nil {
return nil, errors.WithMessage(err, "unable to retrieve kafka metadata")
}
err = c.SubscribeTopics(s.topics, nil)
if err != nil {
return nil, err
}
go s.consume()
return s, nil
}
// consume events from kafka consumer
func (s *Source) consume() {
defer close(s.doneChan)
loop:
for {
select {
case <-s.quitChan:
break loop
case ev := <-s.cons.Events():
switch e := ev.(type) {
case kafka.AssignedPartitions:
s.cons.Assign(e.Partitions)
s.evtChan <- frizzle.Event(e)
case kafka.RevokedPartitions:
s.cons.Unassign()
s.evtChan <- frizzle.Event(e)
case *kafka.Message:
s.handleMsg(e)
case kafka.PartitionEOF:
// No action required
case kafka.OffsetsCommitted:
// only report if there is an error
if e.Error != nil {
s.evtChan <- frizzle.NewError(e.Error.Error())
}
case kafka.Error:
s.evtChan <- frizzle.Event(e)
default:
s.evtChan <- frizzle.Event(e)
}
}
}
}
func (s *Source) handleMsg(k *kafka.Message) {
id := generateID()
m := frizzle.NewSimpleMsg(id, k.Value, k.Timestamp)
s.unAcked.Add(m)
s.msgChan <- m
}
// Events reports async Events that occur during processing
func (s *Source) Events() <-chan frizzle.Event {
return (<-chan frizzle.Event)(s.evtChan)
}
// Receive returns a channel for receiving Msgs
func (s *Source) Receive() <-chan frizzle.Msg {
return (<-chan frizzle.Msg)(s.msgChan)
}
// Ack a Msg
func (s *Source) Ack(m frizzle.Msg) error {
return s.unAcked.Remove(m)
}
// Fail a Msg
func (s *Source) Fail(m frizzle.Msg) error {
return s.unAcked.Remove(m)
}
// UnAcked Msgs list
func (s *Source) UnAcked() []frizzle.Msg {
return s.unAcked.List()
}
// Stop prevents new Msgs from being written to Receive() channel. It must
// be called before Close() will return.
func (s *Source) Stop() error {
close(s.quitChan)
return nil
}
// Ping brokers to ensure Source can connect to configured topics
func (s *Source) Ping() error {
for _, topic := range s.topics {
meta, err := s.cons.GetMetadata(&topic, false, kafkaSessionTimeoutMS)
if err != nil {
return err
} else if kafkaErr := meta.Topics[topic].Error; kafkaErr.Code() != kafka.ErrNoError {
return errors.WithMessagef(kafkaErr, "topic %s has error", topic)
} else if len(meta.Topics[topic].Partitions) < 1 {
return errors.New(fmt.Sprintf("configured topic %s has no partitions", topic))
}
}
return nil
}
// Close cleans up underlying resources.
// It errors if Stop() has not been called and/or if there are
// unAcked Msgs.
func (s *Source) Close() error {
// confirm that consume() goroutine finished
select {
case <-s.doneChan:
case <-time.After(stopCloseTimeout):
return errors.New("kafka source: need to call Stop() before Close()")
}
if s.unAcked.Count() > 0 {
return frizzle.ErrUnackedMsgsRemain
}
close(s.msgChan)
close(s.evtChan)
return s.cons.Close()
}