forked from segmentio/kafka-go
-
Notifications
You must be signed in to change notification settings - Fork 0
/
write.go
727 lines (620 loc) · 16.9 KB
/
write.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
package kafka
import (
"bytes"
"encoding/binary"
"fmt"
"hash/crc32"
"io"
"time"
)
type writeBuffer struct {
w io.Writer
b [16]byte
}
func (wb *writeBuffer) writeInt8(i int8) {
wb.b[0] = byte(i)
wb.Write(wb.b[:1])
}
func (wb *writeBuffer) writeInt16(i int16) {
binary.BigEndian.PutUint16(wb.b[:2], uint16(i))
wb.Write(wb.b[:2])
}
func (wb *writeBuffer) writeInt32(i int32) {
binary.BigEndian.PutUint32(wb.b[:4], uint32(i))
wb.Write(wb.b[:4])
}
func (wb *writeBuffer) writeInt64(i int64) {
binary.BigEndian.PutUint64(wb.b[:8], uint64(i))
wb.Write(wb.b[:8])
}
func (wb *writeBuffer) writeVarInt(i int64) {
u := uint64((i << 1) ^ (i >> 63))
n := 0
for u >= 0x80 && n < len(wb.b) {
wb.b[n] = byte(u) | 0x80
u >>= 7
n++
}
if n < len(wb.b) {
wb.b[n] = byte(u)
n++
}
wb.Write(wb.b[:n])
}
func (wb *writeBuffer) writeString(s string) {
wb.writeInt16(int16(len(s)))
wb.WriteString(s)
}
func (wb *writeBuffer) writeVarString(s string) {
wb.writeVarInt(int64(len(s)))
wb.WriteString(s)
}
func (wb *writeBuffer) writeNullableString(s *string) {
if s == nil {
wb.writeInt16(-1)
} else {
wb.writeString(*s)
}
}
func (wb *writeBuffer) writeBytes(b []byte) {
n := len(b)
if b == nil {
n = -1
}
wb.writeInt32(int32(n))
wb.Write(b)
}
func (wb *writeBuffer) writeVarBytes(b []byte) {
if b != nil {
wb.writeVarInt(int64(len(b)))
wb.Write(b)
} else {
//-1 is used to indicate nil key
wb.writeVarInt(-1)
}
}
func (wb *writeBuffer) writeBool(b bool) {
v := int8(0)
if b {
v = 1
}
wb.writeInt8(v)
}
func (wb *writeBuffer) writeArrayLen(n int) {
wb.writeInt32(int32(n))
}
func (wb *writeBuffer) writeArray(n int, f func(int)) {
wb.writeArrayLen(n)
for i := 0; i < n; i++ {
f(i)
}
}
func (wb *writeBuffer) writeVarArray(n int, f func(int)) {
wb.writeVarInt(int64(n))
for i := 0; i < n; i++ {
f(i)
}
}
func (wb *writeBuffer) writeStringArray(a []string) {
wb.writeArray(len(a), func(i int) { wb.writeString(a[i]) })
}
func (wb *writeBuffer) writeInt32Array(a []int32) {
wb.writeArray(len(a), func(i int) { wb.writeInt32(a[i]) })
}
func (wb *writeBuffer) write(a interface{}) {
switch v := a.(type) {
case int8:
wb.writeInt8(v)
case int16:
wb.writeInt16(v)
case int32:
wb.writeInt32(v)
case int64:
wb.writeInt64(v)
case string:
wb.writeString(v)
case []byte:
wb.writeBytes(v)
case bool:
wb.writeBool(v)
case writable:
v.writeTo(wb)
default:
panic(fmt.Sprintf("unsupported type: %T", a))
}
}
func (wb *writeBuffer) Write(b []byte) (int, error) {
return wb.w.Write(b)
}
func (wb *writeBuffer) WriteString(s string) (int, error) {
return io.WriteString(wb.w, s)
}
func (wb *writeBuffer) Flush() error {
if x, ok := wb.w.(interface{ Flush() error }); ok {
return x.Flush()
}
return nil
}
type writable interface {
writeTo(*writeBuffer)
}
func (wb *writeBuffer) writeFetchRequestV2(correlationID int32, clientID, topic string, partition int32, offset int64, minBytes, maxBytes int, maxWait time.Duration) error {
h := requestHeader{
ApiKey: int16(fetchRequest),
ApiVersion: int16(v2),
CorrelationID: correlationID,
ClientID: clientID,
}
h.Size = (h.size() - 4) +
4 + // replica ID
4 + // max wait time
4 + // min bytes
4 + // topic array length
sizeofString(topic) +
4 + // partition array length
4 + // partition
8 + // offset
4 // max bytes
h.writeTo(wb)
wb.writeInt32(-1) // replica ID
wb.writeInt32(milliseconds(maxWait))
wb.writeInt32(int32(minBytes))
// topic array
wb.writeArrayLen(1)
wb.writeString(topic)
// partition array
wb.writeArrayLen(1)
wb.writeInt32(partition)
wb.writeInt64(offset)
wb.writeInt32(int32(maxBytes))
return wb.Flush()
}
func (wb *writeBuffer) writeFetchRequestV5(correlationID int32, clientID, topic string, partition int32, offset int64, minBytes, maxBytes int, maxWait time.Duration, isolationLevel int8) error {
h := requestHeader{
ApiKey: int16(fetchRequest),
ApiVersion: int16(v5),
CorrelationID: correlationID,
ClientID: clientID,
}
h.Size = (h.size() - 4) +
4 + // replica ID
4 + // max wait time
4 + // min bytes
4 + // max bytes
1 + // isolation level
4 + // topic array length
sizeofString(topic) +
4 + // partition array length
4 + // partition
8 + // offset
8 + // log start offset
4 // max bytes
h.writeTo(wb)
wb.writeInt32(-1) // replica ID
wb.writeInt32(milliseconds(maxWait))
wb.writeInt32(int32(minBytes))
wb.writeInt32(int32(maxBytes))
wb.writeInt8(isolationLevel) // isolation level 0 - read uncommitted
// topic array
wb.writeArrayLen(1)
wb.writeString(topic)
// partition array
wb.writeArrayLen(1)
wb.writeInt32(partition)
wb.writeInt64(offset)
wb.writeInt64(int64(0)) // log start offset only used when is sent by follower
wb.writeInt32(int32(maxBytes))
return wb.Flush()
}
func (wb *writeBuffer) writeFetchRequestV10(correlationID int32, clientID, topic string, partition int32, offset int64, minBytes, maxBytes int, maxWait time.Duration, isolationLevel int8) error {
h := requestHeader{
ApiKey: int16(fetchRequest),
ApiVersion: int16(v10),
CorrelationID: correlationID,
ClientID: clientID,
}
h.Size = (h.size() - 4) +
4 + // replica ID
4 + // max wait time
4 + // min bytes
4 + // max bytes
1 + // isolation level
4 + // session ID
4 + // session epoch
4 + // topic array length
sizeofString(topic) +
4 + // partition array length
4 + // partition
4 + // current leader epoch
8 + // fetch offset
8 + // log start offset
4 + // partition max bytes
4 // forgotten topics data
h.writeTo(wb)
wb.writeInt32(-1) // replica ID
wb.writeInt32(milliseconds(maxWait))
wb.writeInt32(int32(minBytes))
wb.writeInt32(int32(maxBytes))
wb.writeInt8(isolationLevel) // isolation level 0 - read uncommitted
wb.writeInt32(0) //FIXME
wb.writeInt32(-1) //FIXME
// topic array
wb.writeArrayLen(1)
wb.writeString(topic)
// partition array
wb.writeArrayLen(1)
wb.writeInt32(partition)
wb.writeInt32(-1) //FIXME
wb.writeInt64(offset)
wb.writeInt64(int64(0)) // log start offset only used when is sent by follower
wb.writeInt32(int32(maxBytes))
// forgotten topics array
wb.writeArrayLen(0) // forgotten topics not supported yet
return wb.Flush()
}
func (wb *writeBuffer) writeListOffsetRequestV1(correlationID int32, clientID, topic string, partition int32, time int64) error {
h := requestHeader{
ApiKey: int16(listOffsetRequest),
ApiVersion: int16(v1),
CorrelationID: correlationID,
ClientID: clientID,
}
h.Size = (h.size() - 4) +
4 + // replica ID
4 + // topic array length
sizeofString(topic) + // topic
4 + // partition array length
4 + // partition
8 // time
h.writeTo(wb)
wb.writeInt32(-1) // replica ID
// topic array
wb.writeArrayLen(1)
wb.writeString(topic)
// partition array
wb.writeArrayLen(1)
wb.writeInt32(partition)
wb.writeInt64(time)
return wb.Flush()
}
func (wb *writeBuffer) writeProduceRequestV2(codec CompressionCodec, correlationID int32, clientID, topic string, partition int32, timeout time.Duration, requiredAcks int16, msgs ...Message) (err error) {
var size int32
var attributes int8
var compressed *bytes.Buffer
if codec == nil {
size = messageSetSize(msgs...)
} else {
compressed, attributes, size, err = compressMessageSet(codec, msgs...)
if err != nil {
return
}
msgs = []Message{{Value: compressed.Bytes()}}
}
h := requestHeader{
ApiKey: int16(produceRequest),
ApiVersion: int16(v2),
CorrelationID: correlationID,
ClientID: clientID,
}
h.Size = (h.size() - 4) +
2 + // required acks
4 + // timeout
4 + // topic array length
sizeofString(topic) + // topic
4 + // partition array length
4 + // partition
4 + // message set size
size
h.writeTo(wb)
wb.writeInt16(requiredAcks) // required acks
wb.writeInt32(milliseconds(timeout))
// topic array
wb.writeArrayLen(1)
wb.writeString(topic)
// partition array
wb.writeArrayLen(1)
wb.writeInt32(partition)
wb.writeInt32(size)
cw := &crc32Writer{table: crc32.IEEETable}
for _, msg := range msgs {
wb.writeMessage(msg.Offset, attributes, msg.Time, msg.Key, msg.Value, cw)
}
releaseBuffer(compressed)
return wb.Flush()
}
func (wb *writeBuffer) writeProduceRequestV3(codec CompressionCodec, correlationID int32, clientID, topic string, partition int32, timeout time.Duration, requiredAcks int16, transactionalID *string, msgs ...Message) (err error) {
var size int32
var attributes int16
var compressed *bytes.Buffer
if codec == nil {
size = recordBatchSize(msgs...)
} else {
compressed, attributes, size, err = compressRecordBatch(codec, msgs...)
if err != nil {
return
}
}
h := requestHeader{
ApiKey: int16(produceRequest),
ApiVersion: int16(v3),
CorrelationID: correlationID,
ClientID: clientID,
}
h.Size = (h.size() - 4) +
sizeofNullableString(transactionalID) +
2 + // required acks
4 + // timeout
4 + // topic array length
sizeofString(topic) + // topic
4 + // partition array length
4 + // partition
4 + // message set size
size
h.writeTo(wb)
wb.writeNullableString(transactionalID)
wb.writeInt16(requiredAcks) // required acks
wb.writeInt32(milliseconds(timeout))
// topic array
wb.writeArrayLen(1)
wb.writeString(topic)
// partition array
wb.writeArrayLen(1)
wb.writeInt32(partition)
wb.writeInt32(size)
baseTime := msgs[0].Time
lastTime := msgs[len(msgs)-1].Time
if compressed != nil {
wb.writeRecordBatch(attributes, size, len(msgs), baseTime, lastTime, func(wb *writeBuffer) {
wb.Write(compressed.Bytes())
})
releaseBuffer(compressed)
} else {
wb.writeRecordBatch(attributes, size, len(msgs), baseTime, lastTime, func(wb *writeBuffer) {
for i, msg := range msgs {
wb.writeRecord(0, msgs[0].Time, int64(i), msg)
}
})
}
return wb.Flush()
}
func (wb *writeBuffer) writeProduceRequestV7(codec CompressionCodec, correlationID int32, clientID, topic string, partition int32, timeout time.Duration, requiredAcks int16, transactionalID *string, msgs ...Message) (err error) {
var size int32
var attributes int16
var compressed *bytes.Buffer
if codec == nil {
size = recordBatchSize(msgs...)
} else {
compressed, attributes, size, err = compressRecordBatch(codec, msgs...)
if err != nil {
return
}
}
h := requestHeader{
ApiKey: int16(produceRequest),
ApiVersion: int16(v7),
CorrelationID: correlationID,
ClientID: clientID,
}
h.Size = (h.size() - 4) +
sizeofNullableString(transactionalID) +
2 + // required acks
4 + // timeout
4 + // topic array length
sizeofString(topic) + // topic
4 + // partition array length
4 + // partition
4 + // message set size
size
h.writeTo(wb)
wb.writeNullableString(transactionalID)
wb.writeInt16(requiredAcks) // required acks
wb.writeInt32(milliseconds(timeout))
// topic array
wb.writeArrayLen(1)
wb.writeString(topic)
// partition array
wb.writeArrayLen(1)
wb.writeInt32(partition)
wb.writeInt32(size)
baseTime := msgs[0].Time
lastTime := msgs[len(msgs)-1].Time
if compressed != nil {
wb.writeRecordBatch(attributes, size, len(msgs), baseTime, lastTime, func(wb *writeBuffer) {
wb.Write(compressed.Bytes())
})
releaseBuffer(compressed)
} else {
wb.writeRecordBatch(attributes, size, len(msgs), baseTime, lastTime, func(wb *writeBuffer) {
for i, msg := range msgs {
wb.writeRecord(0, msgs[0].Time, int64(i), msg)
}
})
}
return wb.Flush()
}
func (wb *writeBuffer) writeRecordBatch(attributes int16, size int32, count int, baseTime, lastTime time.Time, write func(*writeBuffer)) {
var (
baseTimestamp = timestamp(baseTime)
lastTimestamp = timestamp(lastTime)
lastOffsetDelta = int32(count - 1)
producerID = int64(-1) // default producer id for now
producerEpoch = int16(-1) // default producer epoch for now
baseSequence = int32(-1) // default base sequence
recordCount = int32(count) // record count
writerBackup = wb.w
)
// dry run to compute the checksum
cw := &crc32Writer{table: crc32.MakeTable(crc32.Castagnoli)}
wb.w = cw
cw.writeInt16(attributes) // attributes, timestamp type 0 - create time, not part of a transaction, no control messages
cw.writeInt32(lastOffsetDelta)
cw.writeInt64(baseTimestamp)
cw.writeInt64(lastTimestamp)
cw.writeInt64(producerID)
cw.writeInt16(producerEpoch)
cw.writeInt32(baseSequence)
cw.writeInt32(recordCount)
write(wb)
wb.w = writerBackup
// actual write to the output buffer
wb.writeInt64(int64(0))
wb.writeInt32(int32(size - 12)) // 12 = batch length + base offset sizes
wb.writeInt32(-1) // partition leader epoch
wb.writeInt8(2) // magic byte
wb.writeInt32(int32(cw.crc32))
wb.writeInt16(attributes)
wb.writeInt32(lastOffsetDelta)
wb.writeInt64(baseTimestamp)
wb.writeInt64(lastTimestamp)
wb.writeInt64(producerID)
wb.writeInt16(producerEpoch)
wb.writeInt32(baseSequence)
wb.writeInt32(recordCount)
write(wb)
}
func compressMessageSet(codec CompressionCodec, msgs ...Message) (compressed *bytes.Buffer, attributes int8, size int32, err error) {
compressed = acquireBuffer()
compressor := codec.NewWriter(compressed)
wb := &writeBuffer{w: compressor}
cw := &crc32Writer{table: crc32.IEEETable}
for offset, msg := range msgs {
wb.writeMessage(int64(offset), 0, msg.Time, msg.Key, msg.Value, cw)
}
if err = compressor.Close(); err != nil {
releaseBuffer(compressed)
return
}
attributes = codec.Code()
size = messageSetSize(Message{Value: compressed.Bytes()})
return
}
func compressRecordBatch(codec CompressionCodec, msgs ...Message) (compressed *bytes.Buffer, attributes int16, size int32, err error) {
compressed = acquireBuffer()
compressor := codec.NewWriter(compressed)
wb := &writeBuffer{w: compressor}
for i, msg := range msgs {
wb.writeRecord(0, msgs[0].Time, int64(i), msg)
}
if err = compressor.Close(); err != nil {
releaseBuffer(compressed)
return
}
attributes = int16(codec.Code())
size = recordBatchHeaderSize + int32(compressed.Len())
return
}
func (wb *writeBuffer) writeMessage(offset int64, attributes int8, time time.Time, key, value []byte, cw *crc32Writer) {
const magicByte = 1 // compatible with kafka 0.10.0.0+
timestamp := timestamp(time)
size := messageSize(key, value)
// dry run to compute the checksum
cw.crc32 = 0
cw.writeInt8(magicByte)
cw.writeInt8(attributes)
cw.writeInt64(timestamp)
cw.writeBytes(key)
cw.writeBytes(value)
// actual write to the output buffer
wb.writeInt64(offset)
wb.writeInt32(size)
wb.writeInt32(int32(cw.crc32))
wb.writeInt8(magicByte)
wb.writeInt8(attributes)
wb.writeInt64(timestamp)
wb.writeBytes(key)
wb.writeBytes(value)
}
// Messages with magic >2 are called records. This method writes messages using message format 2.
func (wb *writeBuffer) writeRecord(attributes int8, baseTime time.Time, offset int64, msg Message) {
timestampDelta := msg.Time.Sub(baseTime)
offsetDelta := int64(offset)
wb.writeVarInt(int64(recordSize(&msg, timestampDelta, offsetDelta)))
wb.writeInt8(attributes)
wb.writeVarInt(int64(milliseconds(timestampDelta)))
wb.writeVarInt(offsetDelta)
wb.writeVarBytes(msg.Key)
wb.writeVarBytes(msg.Value)
wb.writeVarArray(len(msg.Headers), func(i int) {
h := &msg.Headers[i]
wb.writeVarString(h.Key)
wb.writeVarBytes(h.Value)
})
}
func varIntLen(i int64) int {
u := uint64((i << 1) ^ (i >> 63)) // zig-zag encoding
n := 0
for u >= 0x80 {
u >>= 7
n++
}
return n + 1
}
func varBytesLen(b []byte) int {
return varIntLen(int64(len(b))) + len(b)
}
func varStringLen(s string) int {
return varIntLen(int64(len(s))) + len(s)
}
func varArrayLen(n int, f func(int) int) int {
size := varIntLen(int64(n))
for i := 0; i < n; i++ {
size += f(i)
}
return size
}
func messageSize(key, value []byte) int32 {
return 4 + // crc
1 + // magic byte
1 + // attributes
8 + // timestamp
sizeofBytes(key) +
sizeofBytes(value)
}
func messageSetSize(msgs ...Message) (size int32) {
for _, msg := range msgs {
size += 8 + // offset
4 + // message size
4 + // crc
1 + // magic byte
1 + // attributes
8 + // timestamp
sizeofBytes(msg.Key) +
sizeofBytes(msg.Value)
}
return
}
func recordSize(msg *Message, timestampDelta time.Duration, offsetDelta int64) int {
return 1 + // attributes
varIntLen(int64(milliseconds(timestampDelta))) +
varIntLen(offsetDelta) +
varBytesLen(msg.Key) +
varBytesLen(msg.Value) +
varArrayLen(len(msg.Headers), func(i int) int {
h := &msg.Headers[i]
return varStringLen(h.Key) + varBytesLen(h.Value)
})
}
const recordBatchHeaderSize int32 = 0 +
8 + // base offset
4 + // batch length
4 + // partition leader epoch
1 + // magic
4 + // crc
2 + // attributes
4 + // last offset delta
8 + // first timestamp
8 + // max timestamp
8 + // producer id
2 + // producer epoch
4 + // base sequence
4 // msg count
func recordBatchSize(msgs ...Message) (size int32) {
size = recordBatchHeaderSize
baseTime := msgs[0].Time
for i := range msgs {
msg := &msgs[i]
msz := recordSize(msg, msg.Time.Sub(baseTime), int64(i))
size += int32(msz + varIntLen(int64(msz)))
}
return
}