-
Notifications
You must be signed in to change notification settings - Fork 667
/
Copy pathgo-kafkacat.go
278 lines (235 loc) · 7.09 KB
/
go-kafkacat.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
/**
* Copyright 2016 Confluent Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
// Example kafkacat clone written in Golang
package main
import (
"bufio"
"fmt"
"os"
"os/signal"
"strings"
"syscall"
"github.com/alecthomas/kingpin"
"github.com/confluentinc/confluent-kafka-go/v2/kafka"
)
var (
verbosity = 1
exitEOF = false
eofCnt = 0
partitionCnt = 0
keyDelim = ""
sigs chan os.Signal
)
func runProducer(config *kafka.ConfigMap, topic string, partition int32) {
p, err := kafka.NewProducer(config)
if err != nil {
fmt.Fprintf(os.Stderr, "Failed to create producer: %s\n", err)
os.Exit(1)
}
fmt.Fprintf(os.Stderr, "Created Producer %v, topic %s [%d]\n", p, topic, partition)
tp := kafka.TopicPartition{Topic: &topic, Partition: partition}
go func(drs chan kafka.Event) {
for ev := range drs {
m, ok := ev.(*kafka.Message)
if !ok {
continue
}
if m.TopicPartition.Error != nil {
fmt.Fprintf(os.Stderr, "%% Delivery error: %v\n", m.TopicPartition)
} else if verbosity >= 2 {
fmt.Fprintf(os.Stderr, "%% Delivered %v\n", m)
}
}
}(p.Events())
reader := bufio.NewReader(os.Stdin)
stdinChan := make(chan string)
go func() {
for {
line, err := reader.ReadString('\n')
if err != nil {
break
}
line = strings.TrimSuffix(line, "\n")
if len(line) == 0 {
continue
}
stdinChan <- line
}
close(stdinChan)
}()
run := true
for run {
select {
case sig := <-sigs:
fmt.Fprintf(os.Stderr, "%% Terminating on signal %v\n", sig)
run = false
case line, ok := <-stdinChan:
if !ok {
run = false
break
}
msg := kafka.Message{TopicPartition: tp}
if keyDelim != "" {
vec := strings.SplitN(line, keyDelim, 2)
if len(vec[0]) > 0 {
msg.Key = ([]byte)(vec[0])
}
if len(vec) == 2 && len(vec[1]) > 0 {
msg.Value = ([]byte)(vec[1])
}
} else {
msg.Value = ([]byte)(line)
}
if err = p.Produce(&msg, nil); err != nil {
fmt.Fprintf(os.Stderr, "%% Produce error: %v\n", err)
}
}
}
fmt.Fprintf(os.Stderr, "%% Flushing %d message(s)\n", p.Len())
p.Flush(10000)
fmt.Fprintf(os.Stderr, "%% Closing\n")
p.Close()
}
func runConsumer(config *kafka.ConfigMap, topics []string) {
c, err := kafka.NewConsumer(config)
if err != nil {
fmt.Fprintf(os.Stderr, "Failed to create consumer: %s\n", err)
os.Exit(1)
}
fmt.Fprintf(os.Stderr, "%% Created Consumer %v\n", c)
err = c.SubscribeTopics(topics, func(c *kafka.Consumer, ev kafka.Event) error {
var err error = nil
switch e := ev.(type) {
case kafka.AssignedPartitions:
fmt.Fprintf(os.Stderr, "%% %v\n", e)
err = c.Assign(e.Partitions)
partitionCnt = len(e.Partitions)
eofCnt = 0
case kafka.RevokedPartitions:
fmt.Fprintf(os.Stderr, "%% %v\n", e)
err = c.Unassign()
partitionCnt = 0
eofCnt = 0
}
return err
})
if err != nil {
fmt.Fprintf(os.Stderr, "Failed to subscribe to topics: %s\n", err)
os.Exit(1)
}
run := true
go func() {
sig := <-sigs
fmt.Fprintf(os.Stderr, "%% Terminating on signal %v\n", sig)
run = false
}()
for run {
ev := c.Poll(1000)
switch e := ev.(type) {
case *kafka.Message:
if verbosity >= 2 {
fmt.Fprintf(os.Stderr, "%% %v:\n", e.TopicPartition)
}
if keyDelim != "" {
if e.Key != nil {
fmt.Printf("%s%s", string(e.Key), keyDelim)
} else {
fmt.Printf("%s", keyDelim)
}
}
fmt.Println(string(e.Value))
case kafka.PartitionEOF:
fmt.Fprintf(os.Stderr, "%% Reached %v\n", e)
eofCnt++
if exitEOF && eofCnt >= partitionCnt {
run = false
}
case kafka.Error:
// Errors should generally be considered as informational, the client will try to automatically recover.
fmt.Fprintf(os.Stderr, "%% Error: %v\n", e)
case kafka.OffsetsCommitted:
if verbosity >= 2 {
fmt.Fprintf(os.Stderr, "%% %v\n", e)
}
case nil:
// Ignore, Poll() timed out.
default:
fmt.Fprintf(os.Stderr, "%% Unhandled event %T ignored: %v\n", e, e)
}
}
fmt.Fprintf(os.Stderr, "%% Closing consumer\n")
c.Close()
}
type configArgs struct {
conf kafka.ConfigMap
}
func (c *configArgs) String() string {
return "FIXME"
}
func (c *configArgs) Set(value string) error {
return c.conf.Set(value)
}
func (c *configArgs) IsCumulative() bool {
return true
}
func main() {
sigs = make(chan os.Signal)
signal.Notify(sigs, syscall.SIGINT, syscall.SIGTERM)
_, libver := kafka.LibraryVersion()
kingpin.Version(fmt.Sprintf("confluent-kafka-go (librdkafka v%s)", libver))
// Default config
var confargs configArgs
confargs.conf = kafka.ConfigMap{"session.timeout.ms": 6000}
/* General options */
brokers := kingpin.Flag("broker", "Bootstrap broker(s)").Required().String()
kingpin.Flag("config", "Configuration property (prop=val)").Short('X').PlaceHolder("PROP=VAL").SetValue(&confargs)
keyDelimArg := kingpin.Flag("key-delim", "Key and value delimiter (empty string=dont print/parse key)").Default("").String()
verbosityArg := kingpin.Flag("verbosity", "Output verbosity level").Short('v').Default("1").Int()
printLinkInfo := kingpin.Flag("link-info", "Print librdkafka link info").Bool()
/* Producer mode options */
modeP := kingpin.Command("produce", "Produce messages")
topic := modeP.Flag("topic", "Topic to produce to").Required().String()
partition := modeP.Flag("partition", "Partition to produce to").Default("-1").Int()
/* Consumer mode options */
modeC := kingpin.Command("consume", "Consume messages").Default()
group := modeC.Flag("group", "Consumer group").Required().String()
topics := modeC.Arg("topic", "Topic(s) to subscribe to").Required().Strings()
initialOffset := modeC.Flag("offset", "Initial offset").Short('o').Default(kafka.OffsetBeginning.String()).String()
exitEOFArg := modeC.Flag("eof", "Exit when EOF is reached for all partitions").Bool()
mode := kingpin.Parse()
if *printLinkInfo {
// This is useful for debugging build types
fmt.Printf("librdkafka link information: %s\n", kafka.LibrdkafkaLinkInfo)
}
verbosity = *verbosityArg
keyDelim = *keyDelimArg
exitEOF = *exitEOFArg
confargs.conf["bootstrap.servers"] = *brokers
switch mode {
case "produce":
confargs.conf["produce.offset.report"] = true
runProducer((*kafka.ConfigMap)(&confargs.conf), *topic, int32(*partition))
case "consume":
confargs.conf["group.id"] = *group
confargs.conf["go.events.channel.enable"] = true
confargs.conf["go.application.rebalance.enable"] = true
confargs.conf["auto.offset.reset"] = *initialOffset
// Enable generation of PartitionEOF events to track
// when end of partition is reached.
confargs.conf["enable.partition.eof"] = exitEOF
runConsumer((*kafka.ConfigMap)(&confargs.conf), *topics)
}
}