forked from segmentio/kafka-go
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwriter.go
1341 lines (1150 loc) · 38.9 KB
/
writer.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
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
package kafka
import (
"bytes"
"context"
"errors"
"io"
"net"
"sync"
"sync/atomic"
"time"
streamdal "github.com/streamdal/streamdal/sdks/go"
metadataAPI "github.com/streamdal/segmentio-kafka-go/protocol/metadata"
)
// The Writer type provides the implementation of a producer of kafka messages
// that automatically distributes messages across partitions of a single topic
// using a configurable balancing policy.
//
// Writes manage the dispatch of messages across partitions of the topic they
// are configured to write to using a Balancer, and aggregate batches to
// optimize the writes to kafka.
//
// Writers may be configured to be used synchronously or asynchronously. When
// use synchronously, calls to WriteMessages block until the messages have been
// written to kafka. In this mode, the program should inspect the error returned
// by the function and test if it an instance of kafka.WriteErrors in order to
// identify which messages have succeeded or failed, for example:
//
// // Construct a synchronous writer (the default mode).
// w := &kafka.Writer{
// Addr: kafka.TCP("localhost:9092", "localhost:9093", "localhost:9094"),
// Topic: "topic-A",
// RequiredAcks: kafka.RequireAll,
// }
//
// ...
//
// // Passing a context can prevent the operation from blocking indefinitely.
// switch err := w.WriteMessages(ctx, msgs...).(type) {
// case nil:
// case kafka.WriteErrors:
// for i := range msgs {
// if err[i] != nil {
// // handle the error writing msgs[i]
// ...
// }
// }
// default:
// // handle other errors
// ...
// }
//
// In asynchronous mode, the program may configure a completion handler on the
// writer to receive notifications of messages being written to kafka:
//
// w := &kafka.Writer{
// Addr: kafka.TCP("localhost:9092", "localhost:9093", "localhost:9094"),
// Topic: "topic-A",
// RequiredAcks: kafka.RequireAll,
// Async: true, // make the writer asynchronous
// Completion: func(messages []kafka.Message, err error) {
// ...
// },
// }
//
// ...
//
// // Because the writer is asynchronous, there is no need for the context to
// // be cancelled, the call will never block.
// if err := w.WriteMessages(context.Background(), msgs...); err != nil {
// // Only validation errors would be reported in this case.
// ...
// }
//
// Methods of Writer are safe to use concurrently from multiple goroutines,
// however the writer configuration should not be modified after first use.
type Writer struct {
// Address of the kafka cluster that this writer is configured to send
// messages to.
//
// This field is required, attempting to write messages to a writer with a
// nil address will error.
Addr net.Addr
// Topic is the name of the topic that the writer will produce messages to.
//
// Setting this field or not is a mutually exclusive option. If you set Topic
// here, you must not set Topic for any produced Message. Otherwise, if you do
// not set Topic, every Message must have Topic specified.
Topic string
// The balancer used to distribute messages across partitions.
//
// The default is to use a round-robin distribution.
Balancer Balancer
// Limit on how many attempts will be made to deliver a message.
//
// The default is to try at most 10 times.
MaxAttempts int
// WriteBackoffMin optionally sets the smallest amount of time the writer waits before
// it attempts to write a batch of messages
//
// Default: 100ms
WriteBackoffMin time.Duration
// WriteBackoffMax optionally sets the maximum amount of time the writer waits before
// it attempts to write a batch of messages
//
// Default: 1s
WriteBackoffMax time.Duration
// Limit on how many messages will be buffered before being sent to a
// partition.
//
// The default is to use a target batch size of 100 messages.
BatchSize int
// Limit the maximum size of a request in bytes before being sent to
// a partition.
//
// The default is to use a kafka default value of 1048576.
BatchBytes int64
// Time limit on how often incomplete message batches will be flushed to
// kafka.
//
// The default is to flush at least every second.
BatchTimeout time.Duration
// Timeout for read operations performed by the Writer.
//
// Defaults to 10 seconds.
ReadTimeout time.Duration
// Timeout for write operation performed by the Writer.
//
// Defaults to 10 seconds.
WriteTimeout time.Duration
// Number of acknowledges from partition replicas required before receiving
// a response to a produce request, the following values are supported:
//
// RequireNone (0) fire-and-forget, do not wait for acknowledgements from the
// RequireOne (1) wait for the leader to acknowledge the writes
// RequireAll (-1) wait for the full ISR to acknowledge the writes
//
// Defaults to RequireNone.
RequiredAcks RequiredAcks
// Setting this flag to true causes the WriteMessages method to never block.
// It also means that errors are ignored since the caller will not receive
// the returned value. Use this only if you don't care about guarantees of
// whether the messages were written to kafka.
//
// Defaults to false.
Async bool
// An optional function called when the writer succeeds or fails the
// delivery of messages to a kafka partition. When writing the messages
// fails, the `err` parameter will be non-nil.
//
// The messages that the Completion function is called with have their
// topic, partition, offset, and time set based on the Produce responses
// received from kafka. All messages passed to a call to the function have
// been written to the same partition. The keys and values of messages are
// referencing the original byte slices carried by messages in the calls to
// WriteMessages.
//
// The function is called from goroutines started by the writer. Calls to
// Close will block on the Completion function calls. When the Writer is
// not writing asynchronously, the WriteMessages call will also block on
// Completion function, which is a useful guarantee if the byte slices
// for the message keys and values are intended to be reused after the
// WriteMessages call returned.
//
// If a completion function panics, the program terminates because the
// panic is not recovered by the writer and bubbles up to the top of the
// goroutine's call stack.
Completion func(messages []Message, err error)
// Compression set the compression codec to be used to compress messages.
Compression Compression
// If not nil, specifies a logger used to report internal changes within the
// writer.
Logger Logger
// ErrorLogger is the logger used to report errors. If nil, the writer falls
// back to using Logger instead.
ErrorLogger Logger
// A transport used to send messages to kafka clusters.
//
// If nil, DefaultTransport is used.
Transport RoundTripper
// AllowAutoTopicCreation notifies writer to create topic if missing.
AllowAutoTopicCreation bool
// Manages the current set of partition-topic writers.
group sync.WaitGroup
mutex sync.Mutex
closed bool
writers map[topicPartition]*partitionWriter
// writer stats are all made of atomic values, no need for synchronization.
// Use a pointer to ensure 64-bit alignment of the values. The once value is
// used to lazily create the value when first used, allowing programs to use
// the zero-value value of Writer.
once sync.Once
*writerStats
// If no balancer is configured, the writer uses this one. RoundRobin values
// are safe to use concurrently from multiple goroutines, there is no need
// for extra synchronization to access this field.
roundRobin RoundRobin
// non-nil when a transport was created by NewWriter, remove in 1.0.
transport *Transport
Streamdal *streamdal.Streamdal // Streamdal addition
}
// WriterConfig is a configuration type used to create new instances of Writer.
//
// DEPRECATED: writer values should be configured directly by assigning their
// exported fields. This type is kept for backward compatibility, and will be
// removed in version 1.0.
type WriterConfig struct {
// The list of brokers used to discover the partitions available on the
// kafka cluster.
//
// This field is required, attempting to create a writer with an empty list
// of brokers will panic.
Brokers []string
// The topic that the writer will produce messages to.
//
// If provided, this will be used to set the topic for all produced messages.
// If not provided, each Message must specify a topic for itself. This must be
// mutually exclusive, otherwise the Writer will return an error.
Topic string
// The dialer used by the writer to establish connections to the kafka
// cluster.
//
// If nil, the default dialer is used instead.
Dialer *Dialer
// The balancer used to distribute messages across partitions.
//
// The default is to use a round-robin distribution.
Balancer Balancer
// Limit on how many attempts will be made to deliver a message.
//
// The default is to try at most 10 times.
MaxAttempts int
// DEPRECATED: in versions prior to 0.4, the writer used channels internally
// to dispatch messages to partitions. This has been replaced by an in-memory
// aggregation of batches which uses shared state instead of message passing,
// making this option unnecessary.
QueueCapacity int
// Limit on how many messages will be buffered before being sent to a
// partition.
//
// The default is to use a target batch size of 100 messages.
BatchSize int
// Limit the maximum size of a request in bytes before being sent to
// a partition.
//
// The default is to use a kafka default value of 1048576.
BatchBytes int
// Time limit on how often incomplete message batches will be flushed to
// kafka.
//
// The default is to flush at least every second.
BatchTimeout time.Duration
// Timeout for read operations performed by the Writer.
//
// Defaults to 10 seconds.
ReadTimeout time.Duration
// Timeout for write operation performed by the Writer.
//
// Defaults to 10 seconds.
WriteTimeout time.Duration
// DEPRECATED: in versions prior to 0.4, the writer used to maintain a cache
// the topic layout. With the change to use a transport to manage connections,
// the responsibility of syncing the cluster layout has been delegated to the
// transport.
RebalanceInterval time.Duration
// DEPRECATED: in versions prior to 0.4, the writer used to manage connections
// to the kafka cluster directly. With the change to use a transport to manage
// connections, the writer has no connections to manage directly anymore.
IdleConnTimeout time.Duration
// Number of acknowledges from partition replicas required before receiving
// a response to a produce request. The default is -1, which means to wait for
// all replicas, and a value above 0 is required to indicate how many replicas
// should acknowledge a message to be considered successful.
RequiredAcks int
// Setting this flag to true causes the WriteMessages method to never block.
// It also means that errors are ignored since the caller will not receive
// the returned value. Use this only if you don't care about guarantees of
// whether the messages were written to kafka.
Async bool
// CompressionCodec set the codec to be used to compress Kafka messages.
CompressionCodec
// If not nil, specifies a logger used to report internal changes within the
// writer.
Logger Logger
// ErrorLogger is the logger used to report errors. If nil, the writer falls
// back to using Logger instead.
ErrorLogger Logger
// Turn Streamdal integration on/off
EnableStreamdal bool
}
type topicPartition struct {
topic string
partition int32
}
// Validate method validates WriterConfig properties.
func (config *WriterConfig) Validate() error {
if len(config.Brokers) == 0 {
return errors.New("cannot create a kafka writer with an empty list of brokers")
}
return nil
}
// WriterStats is a data structure returned by a call to Writer.Stats that
// exposes details about the behavior of the writer.
type WriterStats struct {
Writes int64 `metric:"kafka.writer.write.count" type:"counter"`
Messages int64 `metric:"kafka.writer.message.count" type:"counter"`
Bytes int64 `metric:"kafka.writer.message.bytes" type:"counter"`
Errors int64 `metric:"kafka.writer.error.count" type:"counter"`
BatchTime DurationStats `metric:"kafka.writer.batch.seconds"`
BatchQueueTime DurationStats `metric:"kafka.writer.batch.queue.seconds"`
WriteTime DurationStats `metric:"kafka.writer.write.seconds"`
WaitTime DurationStats `metric:"kafka.writer.wait.seconds"`
Retries int64 `metric:"kafka.writer.retries.count" type:"counter"`
BatchSize SummaryStats `metric:"kafka.writer.batch.size"`
BatchBytes SummaryStats `metric:"kafka.writer.batch.bytes"`
MaxAttempts int64 `metric:"kafka.writer.attempts.max" type:"gauge"`
WriteBackoffMin time.Duration `metric:"kafka.writer.backoff.min" type:"gauge"`
WriteBackoffMax time.Duration `metric:"kafka.writer.backoff.max" type:"gauge"`
MaxBatchSize int64 `metric:"kafka.writer.batch.max" type:"gauge"`
BatchTimeout time.Duration `metric:"kafka.writer.batch.timeout" type:"gauge"`
ReadTimeout time.Duration `metric:"kafka.writer.read.timeout" type:"gauge"`
WriteTimeout time.Duration `metric:"kafka.writer.write.timeout" type:"gauge"`
RequiredAcks int64 `metric:"kafka.writer.acks.required" type:"gauge"`
Async bool `metric:"kafka.writer.async" type:"gauge"`
Topic string `tag:"topic"`
// DEPRECATED: these fields will only be reported for backward compatibility
// if the Writer was constructed with NewWriter.
Dials int64 `metric:"kafka.writer.dial.count" type:"counter"`
DialTime DurationStats `metric:"kafka.writer.dial.seconds"`
// DEPRECATED: these fields were meaningful prior to kafka-go 0.4, changes
// to the internal implementation and the introduction of the transport type
// made them unnecessary.
//
// The values will be zero but are left for backward compatibility to avoid
// breaking programs that used these fields.
Rebalances int64
RebalanceInterval time.Duration
QueueLength int64
QueueCapacity int64
ClientID string
}
// writerStats is a struct that contains statistics on a writer.
//
// Since atomic is used to mutate the statistics the values must be 64-bit aligned.
// This is easily accomplished by always allocating this struct directly, (i.e. using a pointer to the struct).
// See https://golang.org/pkg/sync/atomic/#pkg-note-BUG
type writerStats struct {
dials counter
writes counter
messages counter
bytes counter
errors counter
dialTime summary
batchTime summary
batchQueueTime summary
writeTime summary
waitTime summary
retries counter
batchSize summary
batchSizeBytes summary
}
// NewWriter creates and returns a new Writer configured with config.
//
// DEPRECATED: Writer value can be instantiated and configured directly,
// this function is retained for backward compatibility and will be removed
// in version 1.0.
func NewWriter(config WriterConfig) *Writer {
if err := config.Validate(); err != nil {
panic(err)
}
if config.Dialer == nil {
config.Dialer = DefaultDialer
}
if config.Balancer == nil {
config.Balancer = &RoundRobin{}
}
// Converts the pre-0.4 Dialer API into a Transport.
kafkaDialer := DefaultDialer
if config.Dialer != nil {
kafkaDialer = config.Dialer
}
dialer := (&net.Dialer{
Timeout: kafkaDialer.Timeout,
Deadline: kafkaDialer.Deadline,
LocalAddr: kafkaDialer.LocalAddr,
DualStack: kafkaDialer.DualStack,
FallbackDelay: kafkaDialer.FallbackDelay,
KeepAlive: kafkaDialer.KeepAlive,
})
var resolver Resolver
if r, ok := kafkaDialer.Resolver.(*net.Resolver); ok {
dialer.Resolver = r
} else {
resolver = kafkaDialer.Resolver
}
stats := new(writerStats)
// For backward compatibility with the pre-0.4 APIs, support custom
// resolvers by wrapping the dial function.
dial := func(ctx context.Context, network, addr string) (net.Conn, error) {
start := time.Now()
defer func() {
stats.dials.observe(1)
stats.dialTime.observe(int64(time.Since(start)))
}()
address, err := lookupHost(ctx, addr, resolver)
if err != nil {
return nil, err
}
return dialer.DialContext(ctx, network, address)
}
idleTimeout := config.IdleConnTimeout
if idleTimeout == 0 {
// Historical default value of WriterConfig.IdleTimeout, 9 minutes seems
// like it is way too long when there is no ping mechanism in the kafka
// protocol.
idleTimeout = 9 * time.Minute
}
metadataTTL := config.RebalanceInterval
if metadataTTL == 0 {
// Historical default value of WriterConfig.RebalanceInterval.
metadataTTL = 15 * time.Second
}
transport := &Transport{
Dial: dial,
SASL: kafkaDialer.SASLMechanism,
TLS: kafkaDialer.TLS,
ClientID: kafkaDialer.ClientID,
IdleTimeout: idleTimeout,
MetadataTTL: metadataTTL,
}
w := &Writer{
Addr: TCP(config.Brokers...),
Topic: config.Topic,
MaxAttempts: config.MaxAttempts,
BatchSize: config.BatchSize,
Balancer: config.Balancer,
BatchBytes: int64(config.BatchBytes),
BatchTimeout: config.BatchTimeout,
ReadTimeout: config.ReadTimeout,
WriteTimeout: config.WriteTimeout,
RequiredAcks: RequiredAcks(config.RequiredAcks),
Async: config.Async,
Logger: config.Logger,
ErrorLogger: config.ErrorLogger,
Transport: transport,
transport: transport,
writerStats: stats,
}
if config.RequiredAcks == 0 {
// Historically the writers created by NewWriter have used "all" as the
// default value when 0 was specified.
w.RequiredAcks = RequireAll
}
if config.CompressionCodec != nil {
w.Compression = Compression(config.CompressionCodec.Code())
}
// Streamdal shim BEGIN
if config.EnableStreamdal {
sc, err := streamdalSetup()
if err != nil {
// NewWriter does not return error, can only panic
panic("unable to setup streamdal for writer: " + err.Error())
}
w.Streamdal = sc
}
// Streamdal shim END
return w
}
// enter is called by WriteMessages to indicate that a new inflight operation
// has started, which helps synchronize with Close and ensure that the method
// does not return until all inflight operations were completed.
func (w *Writer) enter() bool {
w.mutex.Lock()
defer w.mutex.Unlock()
if w.closed {
return false
}
w.group.Add(1)
return true
}
// leave is called by WriteMessages to indicate that the inflight operation has
// completed.
func (w *Writer) leave() { w.group.Done() }
// spawn starts a new asynchronous operation on the writer. This method is used
// instead of starting goroutines inline to help manage the state of the
// writer's wait group. The wait group is used to block Close calls until all
// inflight operations have completed, therefore automatically including those
// started with calls to spawn.
func (w *Writer) spawn(f func()) {
w.group.Add(1)
go func() {
defer w.group.Done()
f()
}()
}
// Close flushes pending writes, and waits for all writes to complete before
// returning. Calling Close also prevents new writes from being submitted to
// the writer, further calls to WriteMessages and the like will fail with
// io.ErrClosedPipe.
func (w *Writer) Close() error {
w.mutex.Lock()
// Marking the writer as closed here causes future calls to WriteMessages to
// fail with io.ErrClosedPipe. Mutation of this field is synchronized on the
// writer's mutex to ensure that no more increments of the wait group are
// performed afterwards (which could otherwise race with the Wait below).
w.closed = true
// close all writers to trigger any pending batches
for _, writer := range w.writers {
writer.close()
}
for partition := range w.writers {
delete(w.writers, partition)
}
w.mutex.Unlock()
w.group.Wait()
if w.transport != nil {
w.transport.CloseIdleConnections()
}
return nil
}
// WriteMessages writes a batch of messages to the kafka topic configured on this
// writer.
//
// Unless the writer was configured to write messages asynchronously, the method
// blocks until all messages have been written, or until the maximum number of
// attempts was reached.
//
// When sending synchronously and the writer's batch size is configured to be
// greater than 1, this method blocks until either a full batch can be assembled
// or the batch timeout is reached. The batch size and timeouts are evaluated
// per partition, so the choice of Balancer can also influence the flushing
// behavior. For example, the Hash balancer will require on average N * batch
// size messages to trigger a flush where N is the number of partitions. The
// best way to achieve good batching behavior is to share one Writer amongst
// multiple go routines.
//
// When the method returns an error, it may be of type kafka.WriteError to allow
// the caller to determine the status of each message.
//
// The context passed as first argument may also be used to asynchronously
// cancel the operation. Note that in this case there are no guarantees made on
// whether messages were written to kafka, they might also still be written
// after this method has already returned, therefore it is important to not
// modify byte slices of passed messages if WriteMessages returned early due
// to a canceled context.
// The program should assume that the whole batch failed and re-write the
// messages later (which could then cause duplicates).
func (w *Writer) WriteMessages(ctx context.Context, msgs ...Message) error {
if w.Addr == nil {
return errors.New("kafka.(*Writer).WriteMessages: cannot create a kafka writer with a nil address")
}
if !w.enter() {
return io.ErrClosedPipe
}
defer w.leave()
if len(msgs) == 0 {
return nil
}
balancer := w.balancer()
batchBytes := w.batchBytes()
for i := range msgs {
n := int64(msgs[i].totalSize())
if n > batchBytes {
// This error is left for backward compatibility with historical
// behavior, but it can yield O(N^2) behaviors. The expectations
// are that the program will check if WriteMessages returned a
// MessageTooLargeError, discard the message that was exceeding
// the maximum size, and try again.
return messageTooLarge(msgs, i)
}
}
// We use int32 here to half the memory footprint (compared to using int
// on 64 bits architectures). We map lists of the message indexes instead
// of the message values for the same reason, int32 is 4 bytes, vs a full
// Message value which is 100+ bytes and contains pointers and contributes
// to increasing GC work.
assignments := make(map[topicPartition][]int32)
newMsgs := make([]Message, 0) // Streamdal addition
var i int // Streamdal addition
for _, msg := range msgs { // Streamdal modification: underscore "i"
topic, err := w.chooseTopic(msg)
if err != nil {
return err
}
// Streamdal shim BEGIN
newMsg, newErr := streamdalProcess(ctx, w.Streamdal, streamdal.OperationTypeProducer, &msg, w.ErrorLogger, w.Logger)
if newErr != nil {
return errors.New("streamdal error: " + newErr.Error())
}
newMsgs = append(newMsgs, *newMsg)
// Streamdal shim END
numPartitions, err := w.partitions(ctx, topic)
if err != nil {
return err
}
partition := balancer.Balance(msg, loadCachedPartitions(numPartitions)...)
key := topicPartition{
topic: topic,
partition: int32(partition),
}
assignments[key] = append(assignments[key], int32(i))
i++ // Streamdal modification
}
batches := w.batchMessages(newMsgs, assignments) // Streamdal modification: "newMsgs" instead of "msgs"
if w.Async {
return nil
}
done := ctx.Done()
hasErrors := false
for batch := range batches {
select {
case <-done:
return ctx.Err()
case <-batch.done:
if batch.err != nil {
hasErrors = true
}
}
}
if !hasErrors {
return nil
}
werr := make(WriteErrors, len(msgs))
for batch, indexes := range batches {
for _, i := range indexes {
werr[i] = batch.err
}
}
return werr
}
func (w *Writer) batchMessages(messages []Message, assignments map[topicPartition][]int32) map[*writeBatch][]int32 {
var batches map[*writeBatch][]int32
if !w.Async {
batches = make(map[*writeBatch][]int32, len(assignments))
}
w.mutex.Lock()
defer w.mutex.Unlock()
if w.writers == nil {
w.writers = map[topicPartition]*partitionWriter{}
}
for key, indexes := range assignments {
writer := w.writers[key]
if writer == nil {
writer = newPartitionWriter(w, key)
w.writers[key] = writer
}
wbatches := writer.writeMessages(messages, indexes)
for batch, idxs := range wbatches {
batches[batch] = idxs
}
}
return batches
}
func (w *Writer) produce(key topicPartition, batch *writeBatch) (*ProduceResponse, error) {
timeout := w.writeTimeout()
ctx, cancel := context.WithTimeout(context.Background(), timeout)
defer cancel()
return w.client(timeout).Produce(ctx, &ProduceRequest{
Partition: int(key.partition),
Topic: key.topic,
RequiredAcks: w.RequiredAcks,
Compression: w.Compression,
Records: &writerRecords{
msgs: batch.msgs,
},
})
}
func (w *Writer) partitions(ctx context.Context, topic string) (int, error) {
client := w.client(w.readTimeout())
// Here we use the transport directly as an optimization to avoid the
// construction of temporary request and response objects made by the
// (*Client).Metadata API.
//
// It is expected that the transport will optimize this request by
// caching recent results (the kafka.Transport types does).
r, err := client.transport().RoundTrip(ctx, client.Addr, &metadataAPI.Request{
TopicNames: []string{topic},
AllowAutoTopicCreation: w.AllowAutoTopicCreation,
})
if err != nil {
return 0, err
}
for _, t := range r.(*metadataAPI.Response).Topics {
if t.Name == topic {
// This should always hit, unless kafka has a bug.
if t.ErrorCode != 0 {
return 0, Error(t.ErrorCode)
}
return len(t.Partitions), nil
}
}
return 0, UnknownTopicOrPartition
}
func (w *Writer) client(timeout time.Duration) *Client {
return &Client{
Addr: w.Addr,
Transport: w.Transport,
Timeout: timeout,
}
}
func (w *Writer) balancer() Balancer {
if w.Balancer != nil {
return w.Balancer
}
return &w.roundRobin
}
func (w *Writer) maxAttempts() int {
if w.MaxAttempts > 0 {
return w.MaxAttempts
}
// TODO: this is a very high default, if something has failed 9 times it
// seems unlikely it will succeed on the 10th attempt. However, it does
// carry the risk to greatly increase the volume of requests sent to the
// kafka cluster. We should consider reducing this default (3?).
return 10
}
func (w *Writer) writeBackoffMin() time.Duration {
if w.WriteBackoffMin > 0 {
return w.WriteBackoffMin
}
return 100 * time.Millisecond
}
func (w *Writer) writeBackoffMax() time.Duration {
if w.WriteBackoffMax > 0 {
return w.WriteBackoffMax
}
return 1 * time.Second
}
func (w *Writer) batchSize() int {
if w.BatchSize > 0 {
return w.BatchSize
}
return 100
}
func (w *Writer) batchBytes() int64 {
if w.BatchBytes > 0 {
return w.BatchBytes
}
return 1048576
}
func (w *Writer) batchTimeout() time.Duration {
if w.BatchTimeout > 0 {
return w.BatchTimeout
}
return 1 * time.Second
}
func (w *Writer) readTimeout() time.Duration {
if w.ReadTimeout > 0 {
return w.ReadTimeout
}
return 10 * time.Second
}
func (w *Writer) writeTimeout() time.Duration {
if w.WriteTimeout > 0 {
return w.WriteTimeout
}
return 10 * time.Second
}
func (w *Writer) withLogger(do func(Logger)) {
if w.Logger != nil {
do(w.Logger)
}
}
func (w *Writer) withErrorLogger(do func(Logger)) {
if w.ErrorLogger != nil {
do(w.ErrorLogger)
} else {
w.withLogger(do)
}
}
func (w *Writer) stats() *writerStats {
w.once.Do(func() {
// This field is not nil when the writer was constructed with NewWriter
// to share the value with the dial function and count dials.
if w.writerStats == nil {
w.writerStats = new(writerStats)
}
})
return w.writerStats
}
// Stats returns a snapshot of the writer stats since the last time the method
// was called, or since the writer was created if it is called for the first
// time.
//
// A typical use of this method is to spawn a goroutine that will periodically
// call Stats on a kafka writer and report the metrics to a stats collection
// system.
func (w *Writer) Stats() WriterStats {
stats := w.stats()
return WriterStats{
Dials: stats.dials.snapshot(),
Writes: stats.writes.snapshot(),
Messages: stats.messages.snapshot(),
Bytes: stats.bytes.snapshot(),
Errors: stats.errors.snapshot(),
DialTime: stats.dialTime.snapshotDuration(),
BatchTime: stats.batchTime.snapshotDuration(),
BatchQueueTime: stats.batchQueueTime.snapshotDuration(),
WriteTime: stats.writeTime.snapshotDuration(),
WaitTime: stats.waitTime.snapshotDuration(),
Retries: stats.retries.snapshot(),
BatchSize: stats.batchSize.snapshot(),
BatchBytes: stats.batchSizeBytes.snapshot(),
MaxAttempts: int64(w.maxAttempts()),
WriteBackoffMin: w.writeBackoffMin(),
WriteBackoffMax: w.writeBackoffMax(),
MaxBatchSize: int64(w.batchSize()),
BatchTimeout: w.batchTimeout(),
ReadTimeout: w.readTimeout(),
WriteTimeout: w.writeTimeout(),
RequiredAcks: int64(w.RequiredAcks),
Async: w.Async,
Topic: w.Topic,
}
}
func (w *Writer) chooseTopic(msg Message) (string, error) {
// w.Topic and msg.Topic are mutually exclusive, meaning only 1 must be set
// otherwise we will return an error.
if w.Topic != "" && msg.Topic != "" {
return "", errors.New("kafka.(*Writer): Topic must not be specified for both Writer and Message")
} else if w.Topic == "" && msg.Topic == "" {
return "", errors.New("kafka.(*Writer): Topic must be specified for Writer or Message")
}
// now we choose the topic, depending on which one is not empty
if msg.Topic != "" {
return msg.Topic, nil
}
return w.Topic, nil
}
type batchQueue struct {
queue []*writeBatch
// Pointers are used here to make `go vet` happy, and avoid copying mutexes.
// It may be better to revert these to non-pointers and avoid the copies in
// a different way.
mutex *sync.Mutex
cond *sync.Cond
closed bool
}
func (b *batchQueue) Put(batch *writeBatch) bool {
b.cond.L.Lock()
defer b.cond.L.Unlock()
defer b.cond.Broadcast()
if b.closed {
return false
}
b.queue = append(b.queue, batch)
return true
}
func (b *batchQueue) Get() *writeBatch {
b.cond.L.Lock()
defer b.cond.L.Unlock()
for len(b.queue) == 0 && !b.closed {
b.cond.Wait()
}
if len(b.queue) == 0 {
return nil
}
batch := b.queue[0]
b.queue[0] = nil
b.queue = b.queue[1:]
return batch
}
func (b *batchQueue) Close() {
b.cond.L.Lock()