forked from fgeller/kt
-
Notifications
You must be signed in to change notification settings - Fork 0
/
produce.go
554 lines (479 loc) · 14.7 KB
/
produce.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
package main
import (
"encoding/base64"
"encoding/hex"
"encoding/json"
"flag"
"fmt"
"log"
"os"
"os/user"
"strings"
"time"
"github.com/Shopify/sarama"
)
type produceArgs struct {
topic string
partition int
brokers string
tlsCA string
tlsCert string
tlsCertKey string
batch int
timeout time.Duration
verbose bool
pretty bool
version string
compression string
literal bool
decodeKey string
decodeValue string
partitioner string
bufferSize int
}
type message struct {
Key *string `json:"key"`
Value *string `json:"value"`
Partition *int32 `json:"partition"`
}
func (cmd *produceCmd) read(as []string) produceArgs {
var args produceArgs
flags := flag.NewFlagSet("produce", flag.ContinueOnError)
flags.StringVar(&args.topic, "topic", "", "Topic to produce to (required).")
flags.IntVar(&args.partition, "partition", 0, "Partition to produce to (defaults to 0).")
flags.StringVar(&args.brokers, "brokers", "", "Comma separated list of brokers. Port defaults to 9092 when omitted (defaults to localhost:9092).")
flags.StringVar(&args.tlsCA, "tlsca", "", "Path to the TLS certificate authority file")
flags.StringVar(&args.tlsCert, "tlscert", "", "Path to the TLS client certificate file")
flags.StringVar(&args.tlsCertKey, "tlscertkey", "", "Path to the TLS client certificate key file")
flags.IntVar(&args.batch, "batch", 1, "Max size of a batch before sending it off")
flags.DurationVar(&args.timeout, "timeout", 50*time.Millisecond, "Duration to wait for batch to be filled before sending it off")
flags.BoolVar(&args.verbose, "verbose", false, "Verbose output")
flags.BoolVar(&args.pretty, "pretty", true, "Control output pretty printing.")
flags.BoolVar(&args.literal, "literal", false, "Interpret stdin line literally and pass it as value, key as null.")
flags.StringVar(&args.version, "version", "", "Kafka protocol version")
flags.StringVar(&args.compression, "compression", "", "Kafka message compression codec [gzip|snappy|lz4] (defaults to none)")
flags.StringVar(&args.partitioner, "partitioner", "", "Optional partitioner to use. Available: hashCode")
flags.StringVar(&args.decodeKey, "decodekey", "string", "Decode message value as (string|hex|base64), defaults to string.")
flags.StringVar(&args.decodeValue, "decodevalue", "string", "Decode message value as (string|hex|base64), defaults to string.")
flags.IntVar(&args.bufferSize, "buffersize", 16777216, "Buffer size for scanning stdin, defaults to 16777216=16*1024*1024.")
flags.Usage = func() {
fmt.Fprintln(os.Stderr, "Usage of produce:")
flags.PrintDefaults()
fmt.Fprintln(os.Stderr, produceDocString)
}
err := flags.Parse(as)
if err != nil && strings.Contains(err.Error(), "flag: help requested") {
os.Exit(0)
} else if err != nil {
os.Exit(2)
}
return args
}
func (cmd *produceCmd) failStartup(msg string) {
fmt.Fprintln(os.Stderr, msg)
failf("use \"kt produce -help\" for more information")
}
func (cmd *produceCmd) parseArgs(as []string) {
args := cmd.read(as)
envTopic := os.Getenv("KT_TOPIC")
if args.topic == "" {
if envTopic == "" {
cmd.failStartup("Topic name is required.")
} else {
args.topic = envTopic
}
}
cmd.topic = args.topic
cmd.tlsCA = args.tlsCA
cmd.tlsCert = args.tlsCert
cmd.tlsCertKey = args.tlsCertKey
envBrokers := os.Getenv("KT_BROKERS")
if args.brokers == "" {
if envBrokers != "" {
args.brokers = envBrokers
} else {
args.brokers = "localhost:9092"
}
}
cmd.brokers = strings.Split(args.brokers, ",")
for i, b := range cmd.brokers {
if !strings.Contains(b, ":") {
cmd.brokers[i] = b + ":9092"
}
}
if args.decodeValue != "string" && args.decodeValue != "hex" && args.decodeValue != "base64" {
cmd.failStartup(fmt.Sprintf(`unsupported decodevalue argument %#v, only string, hex and base64 are supported.`, args.decodeValue))
return
}
cmd.decodeValue = args.decodeValue
if args.decodeKey != "string" && args.decodeKey != "hex" && args.decodeKey != "base64" {
cmd.failStartup(fmt.Sprintf(`unsupported decodekey argument %#v, only string, hex and base64 are supported.`, args.decodeValue))
return
}
cmd.decodeKey = args.decodeKey
cmd.batch = args.batch
cmd.timeout = args.timeout
cmd.verbose = args.verbose
cmd.pretty = args.pretty
cmd.literal = args.literal
cmd.partition = int32(args.partition)
cmd.partitioner = args.partitioner
cmd.version = kafkaVersion(args.version)
cmd.compression = kafkaCompression(args.compression)
cmd.bufferSize = args.bufferSize
}
func kafkaCompression(codecName string) sarama.CompressionCodec {
switch codecName {
case "gzip":
return sarama.CompressionGZIP
case "snappy":
return sarama.CompressionSnappy
case "lz4":
return sarama.CompressionLZ4
case "":
return sarama.CompressionNone
}
failf("unsupported compression codec %#v - supported: gzip, snappy, lz4", codecName)
panic("unreachable")
}
func (cmd *produceCmd) findLeaders() {
var (
usr *user.User
err error
res *sarama.MetadataResponse
req = sarama.MetadataRequest{Topics: []string{cmd.topic}}
cfg = sarama.NewConfig()
)
cfg.Producer.RequiredAcks = sarama.WaitForAll
cfg.Version = cmd.version
if usr, err = user.Current(); err != nil {
fmt.Fprintf(os.Stderr, "Failed to read current user err=%v", err)
}
cfg.ClientID = "kt-produce-" + sanitizeUsername(usr.Username)
if cmd.verbose {
fmt.Fprintf(os.Stderr, "sarama client configuration %#v\n", cfg)
}
tlsConfig, err := setupCerts(cmd.tlsCert, cmd.tlsCA, cmd.tlsCertKey)
if err != nil {
failf("failed to setup certificates err=%v", err)
}
if tlsConfig != nil {
cfg.Net.TLS.Enable = true
cfg.Net.TLS.Config = tlsConfig
}
loop:
for _, addr := range cmd.brokers {
broker := sarama.NewBroker(addr)
if err = broker.Open(cfg); err != nil {
fmt.Fprintf(os.Stderr, "Failed to open broker connection to %v. err=%s\n", addr, err)
continue loop
}
if connected, err := broker.Connected(); !connected || err != nil {
fmt.Fprintf(os.Stderr, "Failed to open broker connection to %v. err=%s\n", addr, err)
continue loop
}
if res, err = broker.GetMetadata(&req); err != nil {
fmt.Fprintf(os.Stderr, "Failed to get metadata from %#v. err=%v\n", addr, err)
continue loop
}
brokers := map[int32]*sarama.Broker{}
for _, b := range res.Brokers {
brokers[b.ID()] = b
}
for _, tm := range res.Topics {
if tm.Name == cmd.topic {
if tm.Err != sarama.ErrNoError {
fmt.Fprintf(os.Stderr, "Failed to get metadata from %#v. err=%v\n", addr, tm.Err)
continue loop
}
cmd.leaders = map[int32]*sarama.Broker{}
for _, pm := range tm.Partitions {
b, ok := brokers[pm.Leader]
if !ok {
failf("failed to find leader in broker response, giving up")
}
if err = b.Open(cfg); err != nil && err != sarama.ErrAlreadyConnected {
failf("failed to open broker connection err=%s", err)
}
if connected, err := broker.Connected(); !connected && err != nil {
failf("failed to wait for broker connection to open err=%s", err)
}
cmd.leaders[pm.ID] = b
}
return
}
}
}
failf("failed to find leader for given topic")
}
type produceCmd struct {
topic string
brokers []string
tlsCA string
tlsCert string
tlsCertKey string
batch int
timeout time.Duration
verbose bool
pretty bool
literal bool
partition int32
version sarama.KafkaVersion
compression sarama.CompressionCodec
partitioner string
decodeKey string
decodeValue string
bufferSize int
leaders map[int32]*sarama.Broker
}
func (cmd *produceCmd) run(as []string) {
cmd.parseArgs(as)
if cmd.verbose {
sarama.Logger = log.New(os.Stderr, "", log.LstdFlags)
}
defer cmd.close()
cmd.findLeaders()
stdin := make(chan string)
lines := make(chan string)
messages := make(chan message)
batchedMessages := make(chan []message)
out := make(chan printContext)
q := make(chan struct{})
go readStdinLines(cmd.bufferSize, stdin)
go print(out, cmd.pretty)
go listenForInterrupt(q)
go cmd.readInput(q, stdin, lines)
go cmd.deserializeLines(lines, messages, int32(len(cmd.leaders)))
go cmd.batchRecords(messages, batchedMessages)
cmd.produce(batchedMessages, out)
}
func (cmd *produceCmd) close() {
for _, b := range cmd.leaders {
var (
connected bool
err error
)
if connected, err = b.Connected(); err != nil {
fmt.Fprintf(os.Stderr, "Failed to check if broker is connected. err=%s\n", err)
continue
}
if !connected {
continue
}
if err = b.Close(); err != nil {
fmt.Fprintf(os.Stderr, "Failed to close broker %v connection. err=%s\n", b, err)
}
}
}
func (cmd *produceCmd) deserializeLines(in chan string, out chan message, partitionCount int32) {
defer func() { close(out) }()
for {
select {
case l, ok := <-in:
if !ok {
return
}
var msg message
switch {
case cmd.literal:
msg.Value = &l
msg.Partition = &cmd.partition
default:
if err := json.Unmarshal([]byte(l), &msg); err != nil {
if cmd.verbose {
fmt.Fprintf(os.Stderr, "Failed to unmarshal input [%v], falling back to defaults. err=%v\n", l, err)
}
var v *string = &l
if len(l) == 0 {
v = nil
}
msg = message{Key: nil, Value: v}
}
}
var part int32 = 0
if msg.Key != nil && cmd.partitioner == "hashCode" {
part = hashCodePartition(*msg.Key, partitionCount)
}
if msg.Partition == nil {
msg.Partition = &part
}
out <- msg
}
}
}
func (cmd *produceCmd) batchRecords(in chan message, out chan []message) {
defer func() { close(out) }()
messages := []message{}
send := func() {
out <- messages
messages = []message{}
}
for {
select {
case m, ok := <-in:
if !ok {
send()
return
}
messages = append(messages, m)
if len(messages) > 0 && len(messages) >= cmd.batch {
send()
}
case <-time.After(cmd.timeout):
if len(messages) > 0 {
send()
}
}
}
}
type partitionProduceResult struct {
start int64
count int64
}
func (cmd *produceCmd) makeSaramaMessage(msg message) (*sarama.Message, error) {
var (
err error
sm = &sarama.Message{Codec: cmd.compression}
)
if msg.Key != nil {
switch cmd.decodeKey {
case "hex":
if sm.Key, err = hex.DecodeString(*msg.Key); err != nil {
return sm, fmt.Errorf("failed to decode key as hex string, err=%v", err)
}
case "base64":
if sm.Key, err = base64.StdEncoding.DecodeString(*msg.Key); err != nil {
return sm, fmt.Errorf("failed to decode key as base64 string, err=%v", err)
}
default: // string
sm.Key = []byte(*msg.Key)
}
}
if msg.Value != nil {
switch cmd.decodeValue {
case "hex":
if sm.Value, err = hex.DecodeString(*msg.Value); err != nil {
return sm, fmt.Errorf("failed to decode value as hex string, err=%v", err)
}
case "base64":
if sm.Value, err = base64.StdEncoding.DecodeString(*msg.Value); err != nil {
return sm, fmt.Errorf("failed to decode value as base64 string, err=%v", err)
}
default: // string
sm.Value = []byte(*msg.Value)
}
}
if cmd.version.IsAtLeast(sarama.V0_10_0_0) {
sm.Version = 1
sm.Timestamp = time.Now()
}
return sm, nil
}
func (cmd *produceCmd) produceBatch(leaders map[int32]*sarama.Broker, batch []message, out chan printContext) error {
requests := map[*sarama.Broker]*sarama.ProduceRequest{}
for _, msg := range batch {
broker, ok := leaders[*msg.Partition]
if !ok {
return fmt.Errorf("non-configured partition %v", *msg.Partition)
}
req, ok := requests[broker]
if !ok {
req = &sarama.ProduceRequest{RequiredAcks: sarama.WaitForAll, Timeout: 10000}
requests[broker] = req
}
sm, err := cmd.makeSaramaMessage(msg)
if err != nil {
return err
}
req.AddMessage(cmd.topic, *msg.Partition, sm)
}
for broker, req := range requests {
resp, err := broker.Produce(req)
if err != nil {
return fmt.Errorf("failed to send request to broker %#v. err=%s", broker, err)
}
offsets, err := readPartitionOffsetResults(resp)
if err != nil {
return fmt.Errorf("failed to read producer response err=%s", err)
}
for p, o := range offsets {
result := map[string]interface{}{"partition": p, "startOffset": o.start, "count": o.count}
ctx := printContext{output: result, done: make(chan struct{})}
out <- ctx
<-ctx.done
}
}
return nil
}
func readPartitionOffsetResults(resp *sarama.ProduceResponse) (map[int32]partitionProduceResult, error) {
offsets := map[int32]partitionProduceResult{}
for _, blocks := range resp.Blocks {
for partition, block := range blocks {
if block.Err != sarama.ErrNoError {
fmt.Fprintf(os.Stderr, "Failed to send message. err=%s\n", block.Err.Error())
return offsets, block.Err
}
if r, ok := offsets[partition]; ok {
offsets[partition] = partitionProduceResult{start: block.Offset, count: r.count + 1}
} else {
offsets[partition] = partitionProduceResult{start: block.Offset, count: 1}
}
}
}
return offsets, nil
}
func (cmd *produceCmd) produce(in chan []message, out chan printContext) {
for {
select {
case b, ok := <-in:
if !ok {
return
}
if err := cmd.produceBatch(cmd.leaders, b, out); err != nil {
fmt.Fprintln(os.Stderr, err.Error()) // TODO: failf
return
}
}
}
}
func (cmd *produceCmd) readInput(q chan struct{}, stdin chan string, out chan string) {
defer func() { close(out) }()
for {
select {
case l, ok := <-stdin:
if !ok {
return
}
out <- l
case <-q:
return
}
}
}
var produceDocString = `
The values for -topic and -brokers can also be set via environment variables KT_TOPIC and KT_BROKERS respectively.
The values supplied on the command line win over environment variable values.
Input is read from stdin and separated by newlines.
If you want to use the -partitioner keep in mind that the hashCode
implementation is not the default for Kafka's producer anymore.
To specify the key, value and partition individually pass it as a JSON object
like the following:
{"key": "id-23", "value": "message content", "partition": 0}
In case the input line cannot be interpeted as a JSON object the key and value
both default to the input line and partition to 0.
Examples:
Send a single message with a specific key:
$ echo '{"key": "id-23", "value": "ola", "partition": 0}' | kt produce -topic greetings
Sent message to partition 0 at offset 3.
$ kt consume -topic greetings -timeout 1s -offsets 0:3-
{"partition":0,"offset":3,"key":"id-23","message":"ola"}
Keep reading input from stdin until interrupted (via ^C).
$ kt produce -topic greetings
hello.
Sent message to partition 0 at offset 4.
bonjour.
Sent message to partition 0 at offset 5.
$ kt consume -topic greetings -timeout 1s -offsets 0:4-
{"partition":0,"offset":4,"key":"hello.","message":"hello."}
{"partition":0,"offset":5,"key":"bonjour.","message":"bonjour."}
`