-
Notifications
You must be signed in to change notification settings - Fork 0
/
producer.go
311 lines (264 loc) · 7.77 KB
/
producer.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
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
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
package kafkaqueue
import (
"context"
"fmt"
"runtime"
"sync"
"sync/atomic"
"time"
"github.com/confluentinc/confluent-kafka-go/v2/kafka"
"github.com/pianoyeg94/go-kafka-queue/goruntime"
"github.com/pianoyeg94/go-kafka-queue/timer"
)
type (
DeliverySuccessCallback func(topic string, partition int32, offset int64, msg *Message)
DeliveryErrorCallback func(err error, topic string, partition int32, msg *Message)
)
const (
producerClosed = 1 << 0
producerRef = 1 << 1
producerRefMask = (1<<62 - 1) << 1
)
var deliveryChansPool = sync.Pool{New: func() interface{} { ch := make(chan kafka.Event, 1); return &ch }}
func NewProducer(ctx context.Context, servers []string, opts *ProducerOptions) (*Producer, error) {
opts = opts.setServers(servers)
if err := opts.validate(); err != nil {
return nil, err
}
var libproducer *kafka.Producer
if err := timer.RetryOverTime(ctx, -1, 0, 500*time.Millisecond, 2*time.Second,
func(ctx context.Context) (err error) {
libproducer, err = kafka.NewProducer(opts.toConfigMap())
return err
},
func(ctx context.Context, err error) bool {
if onInternalError := opts.InternalErrorCallback; onInternalError != nil {
onInternalError(fmt.Errorf("kafka: error fetching metadata and creating producer: %w", err), "undefined")
}
kerr, ok := err.(kafka.Error)
if !ok {
return false
}
return isKafkalibTransientError(&kerr)
},
); err != nil {
return nil, fmt.Errorf("kafka: error fetching metadata and creating producer '%s': %w", "undefined", err)
}
producer := Producer{
servers: servers,
producer: libproducer,
deliveries: libproducer.Events(),
onDeliverySuccess: opts.DeliverySuccessCallback,
onDeliveryError: opts.DeliveryErrorCallback,
onInternalError: opts.InternalErrorCallback,
close: make(chan struct{}),
}
producer.closeWg.Add(1)
go producer.watchDeliveries()
return &producer, nil
}
type Producer struct {
servers []string
producer *kafka.Producer
deliveries <-chan kafka.Event
onDeliverySuccess DeliverySuccessCallback
onDeliveryError DeliveryErrorCallback
onInternalError InternalErrorCallback
state uint64
close chan struct{}
closeWg sync.WaitGroup
}
func (p *Producer) Produce(topic string, key string, msg *Message) error {
return p.produce(topic, key, msg, nil)
}
func (p *Producer) ProduceSync(topic string, key string, msg *Message) error {
pdeliveries := deliveryChansPool.Get().(*chan kafka.Event)
deliveries := *pdeliveries
defer deliveryChansPool.Put(pdeliveries)
if err := p.produce(topic, key, msg, deliveries); err != nil {
return fmt.Errorf("kafka: error producing message to topic '%s': %w", topic, err)
}
event := <-deliveries
delivery, ok := event.(*kafka.Message)
if !ok {
return fmt.Errorf("kafka: synchronous produce to topic '%s' received unexpected event type", topic)
}
return fmt.Errorf("kafka: error producing message to topic '%s': %w", topic, delivery.TopicPartition.Error)
}
func (p *Producer) Close() {
if p.markClosed() {
return
}
p.waitClosed()
close(p.close)
p.closeWg.Wait()
p.producer.Close()
}
func (p *Producer) IsClosed() bool {
return atomic.LoadUint64(&p.state) == producerClosed
}
func (p *Producer) produce(topic string, key string, msg *Message, confirms chan kafka.Event) error {
if !p.incref() {
return fmt.Errorf("kafka: producer '%s' already closing or closed", topic)
}
defer p.decref()
var keyBts []byte
if key != "" {
keyBts = []byte(key)
}
plibheaders := convertHeaders(msg.Headers)
defer freeLibHeaders(plibheaders)
libmsg := kafka.Message{
TopicPartition: kafka.TopicPartition{
Topic: &topic,
Partition: kafka.PartitionAny,
},
Key: keyBts,
Value: msg.Body,
}
return timer.RetryOverTime(context.Background(), -1, 0, 50*time.Millisecond, 250*time.Millisecond,
func(ctx context.Context) error { return p.producer.Produce(&libmsg, confirms) },
func(ctx context.Context, err error) bool {
liberr, ok := err.(kafka.Error)
if !ok {
return false
}
return liberr.Code() == kafka.ErrQueueFull
},
)
}
func (p *Producer) watchDeliveries() {
defer func() {
if !p.markClosed() { // if producer should be closed as a result of a fatal error
p.waitClosed()
close(p.close)
p.producer.Close()
}
p.closeWg.Done()
}()
for {
select {
case ev, ok := <-p.deliveries:
if !ok {
return
}
switch event := ev.(type) {
case *kafka.Message:
pheaders := convertLibHeaders(event.Headers)
msg := Message{Body: event.Value}
if pheaders != nil {
msg.Headers = *pheaders
}
if err := event.TopicPartition.Error; err != nil && p.onDeliveryError != nil {
p.onDeliveryError(
fmt.Errorf("kafka: producer delivery error: %w", err),
*event.TopicPartition.Topic,
event.TopicPartition.Partition,
&msg,
)
}
if err := event.TopicPartition.Error; err == nil && p.onDeliverySuccess != nil {
p.onDeliverySuccess(
*event.TopicPartition.Topic,
event.TopicPartition.Partition,
int64(event.TopicPartition.Offset),
&msg,
)
}
freeHeaders(pheaders)
case kafka.Error:
if !isKafkalibTransientError(&event) {
if p.onInternalError != nil {
p.onInternalError(fmt.Errorf("kafka: got producer fatal error, closing prematurely: %s: %w", event.Code(), event), "unknown")
}
return
}
if p.onInternalError != nil {
p.onInternalError(fmt.Errorf("kafka: got producer transient error: %s: %w", event.Code(), event), "unknown")
}
}
case <-p.close:
return
}
}
}
// incref uses a spin-lock pattern
// to check if the producer is
// already closed, if not - increments
// the number of currently active
// produce calls
func (p *Producer) incref() bool {
for {
old := atomic.LoadUint64(&p.state)
if old&producerClosed != 0 {
return false
}
newVal := old + producerRef
if newVal&producerRefMask == 0 { // overflow
continue
}
if atomic.CompareAndSwapUint64(&p.state, old, newVal) {
return true
}
}
}
func (p *Producer) decref() {
for {
old := atomic.LoadUint64(&p.state)
if old&producerRefMask == 0 {
panic("kafka: inconsistent producer.incref()")
}
newVal := old - producerRef
if atomic.CompareAndSwapUint64(&p.state, old, newVal) {
return
}
}
}
// refcount returns the number of currently
// active produce calls
func (p *Producer) refcount() int {
return int(atomic.LoadUint64(&p.state)&producerRefMask) / 2
}
// markClosed uses a spin-lock pattern to check
// if the producer is already closing, otherwise marks
// it as closed.
func (p *Producer) markClosed() (alreadyClosed bool) {
for {
old := atomic.LoadUint64(&p.state)
if old&producerClosed != 0 {
return true
}
newVal := old + producerClosed
if atomic.CompareAndSwapUint64(&p.state, old, newVal) {
return false
}
}
}
// waitClosed spins and periodically yields
// to the runtime scheduler until there are no
// more active produce calls. Then it waits till
// all outstanding and incoming kafka events are handled properly.
func (p *Producer) waitClosed() {
// active spinning is never a good idea in user-space,
// so we cap the spinning time to 5 microseconds
const yieldDelay = 5 * 1000
var nextYield int64
for i := 0; p.refcount() > 0; i++ {
if i == 0 {
nextYield = goruntime.Nanotime() + yieldDelay
}
if goruntime.Nanotime() < nextYield {
for x := 0; x < 10 && p.refcount() > 0; x++ {
goruntime.Procyield(1) // calls the assembly PAUSE instruction once
}
} else {
// switches to g0's OS scheduling stack,
// puts the current goroutine on to the global run queue
// and eventually schedules another goroutine to run
// on the current P's M (OS thread).
runtime.Gosched()
nextYield = goruntime.Nanotime() + yieldDelay/2 // spin for another 2.5 microseconds
}
}
p.producer.Flush(int((15 * time.Second).Milliseconds()))
}