-
Notifications
You must be signed in to change notification settings - Fork 68
/
writer.go
448 lines (403 loc) · 11.8 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
package kafka
import (
"context"
"encoding/json"
"fmt"
"time"
"github.com/grafana/sobek"
kafkago "github.com/segmentio/kafka-go"
"github.com/segmentio/kafka-go/compress"
"go.k6.io/k6/js/common"
"go.k6.io/k6/metrics"
)
var (
// Compression codecs.
codecGzip = "gzip"
codecSnappy = "snappy"
codecLz4 = "lz4"
codecZstd = "zstd"
// CompressionCodecs is a map of compression codec names to their respective codecs.
CompressionCodecs map[string]compress.Compression
// Balancers.
balancerRoundRobin = "balancer_roundrobin"
balancerLeastBytes = "balancer_leastbytes"
balancerHash = "balancer_hash"
balancerCrc32 = "balancer_crc32"
balancerMurmur2 = "balancer_murmur2"
// Balancers is a map of balancer names to their respective balancers.
Balancers map[string]kafkago.Balancer
)
type WriterConfig struct {
AutoCreateTopic bool `json:"autoCreateTopic"`
ConnectLogger bool `json:"connectLogger"`
MaxAttempts int `json:"maxAttempts"`
BatchSize int `json:"batchSize"`
BatchBytes int `json:"batchBytes"`
RequiredAcks int `json:"requiredAcks"`
Topic string `json:"topic"`
Balancer string `json:"balancer"`
Compression string `json:"compression"`
Brokers []string `json:"brokers"`
BatchTimeout time.Duration `json:"batchTimeout"`
ReadTimeout time.Duration `json:"readTimeout"`
WriteTimeout time.Duration `json:"writeTimeout"`
SASL SASLConfig `json:"sasl"`
TLS TLSConfig `json:"tls"`
}
type Message struct {
Topic string `json:"topic"`
// Setting Partition has no effect when writing messages.
Partition int `json:"partition"`
Offset int64 `json:"offset"`
HighWaterMark int64 `json:"highWaterMark"`
Key []byte `json:"key"`
Value []byte `json:"value"`
Headers map[string]interface{} `json:"headers"`
// If not set at the creation, Time will be automatically set when
// writing the message.
Time time.Time `json:"time"`
}
type ProduceConfig struct {
Messages []Message `json:"messages"`
}
// writerClass is a wrapper around kafkago.writer and acts as a JS constructor
// for this extension, thus it must be called with new operator, e.g. new Writer(...).
// nolint: funlen
func (k *Kafka) writerClass(call sobek.ConstructorCall) *sobek.Object {
runtime := k.vu.Runtime()
var writerConfig *WriterConfig
if len(call.Arguments) == 0 {
common.Throw(runtime, ErrNotEnoughArguments)
}
if params, ok := call.Argument(0).Export().(map[string]interface{}); ok {
if b, err := json.Marshal(params); err != nil {
common.Throw(runtime, err)
} else {
if err = json.Unmarshal(b, &writerConfig); err != nil {
common.Throw(runtime, err)
}
}
}
writer := k.writer(writerConfig)
writerObject := runtime.NewObject()
// This is the writer object itself.
if err := writerObject.Set("This", writer); err != nil {
common.Throw(runtime, err)
}
err := writerObject.Set("produce", func(call sobek.FunctionCall) sobek.Value {
var producerConfig *ProduceConfig
if len(call.Arguments) == 0 {
common.Throw(runtime, ErrNotEnoughArguments)
}
if params, ok := call.Argument(0).Export().(map[string]interface{}); ok {
b, err := json.Marshal(params)
if err != nil {
common.Throw(runtime, err)
}
err = json.Unmarshal(b, &producerConfig)
if err != nil {
common.Throw(runtime, err)
}
}
k.produce(writer, producerConfig)
return sobek.Undefined()
})
if err != nil {
common.Throw(runtime, err)
}
// This is unnecessary, but it's here for reference purposes.
err = writerObject.Set("close", func(call sobek.FunctionCall) sobek.Value {
if err := writer.Close(); err != nil {
common.Throw(runtime, err)
}
return sobek.Undefined()
})
if err != nil {
common.Throw(runtime, err)
}
freeze(writerObject)
return runtime.ToValue(writerObject).ToObject(runtime)
}
// writer creates a new Kafka writer.
func (k *Kafka) writer(writerConfig *WriterConfig) *kafkago.Writer {
dialer, err := GetDialer(writerConfig.SASL, writerConfig.TLS)
if err != nil {
if err.Unwrap() != nil {
logger.WithField("error", err).Error(err)
}
common.Throw(k.vu.Runtime(), err)
return nil
}
if writerConfig.BatchSize <= 0 {
writerConfig.BatchSize = 1
}
writer := &kafkago.Writer{
Addr: kafkago.TCP(writerConfig.Brokers...),
Topic: writerConfig.Topic,
Balancer: Balancers[balancerLeastBytes],
MaxAttempts: writerConfig.MaxAttempts,
BatchSize: writerConfig.BatchSize,
BatchBytes: int64(writerConfig.BatchBytes),
BatchTimeout: writerConfig.BatchTimeout,
ReadTimeout: writerConfig.ReadTimeout,
WriteTimeout: writerConfig.WriteTimeout,
RequiredAcks: kafkago.RequiredAcks(writerConfig.RequiredAcks),
Async: false,
Transport: &kafkago.Transport{
TLS: dialer.TLS,
SASL: dialer.SASLMechanism,
ClientID: dialer.ClientID,
},
AllowAutoTopicCreation: writerConfig.AutoCreateTopic,
}
if balancer, ok := Balancers[writerConfig.Balancer]; ok {
writer.Balancer = balancer
}
if codec, ok := CompressionCodecs[writerConfig.Compression]; ok {
writer.Compression = codec
}
if writerConfig.ConnectLogger {
writer.Logger = logger
}
return writer
}
// produce sends messages to Kafka with the given configuration.
// nolint: funlen
func (k *Kafka) produce(writer *kafkago.Writer, produceConfig *ProduceConfig) {
if state := k.vu.State(); state == nil {
logger.WithField("error", ErrForbiddenInInitContext).Error(ErrForbiddenInInitContext)
common.Throw(k.vu.Runtime(), ErrForbiddenInInitContext)
}
var ctx context.Context
if ctx = k.vu.Context(); ctx == nil {
err := NewXk6KafkaError(noContextError, "No context.", nil)
logger.WithField("error", err).Info(err)
common.Throw(k.vu.Runtime(), err)
}
kafkaMessages := make([]kafkago.Message, len(produceConfig.Messages))
for index, message := range produceConfig.Messages {
kafkaMessages[index] = kafkago.Message{
Offset: message.Offset,
}
// Topic can be explicitly set on each individual message.
// Setting topic on the writer and the messages are mutually exclusive.
if message.Topic != "" {
kafkaMessages[index].Topic = message.Topic
}
// If time is set, use it to set the time on the message,
// otherwise use the current time.
if !message.Time.IsZero() {
kafkaMessages[index].Time = message.Time
}
// If a key was provided, add it to the message. Keys are optional.
if message.Key != nil {
kafkaMessages[index].Key = message.Key
}
// Then add the value to the message.
if message.Value != nil {
kafkaMessages[index].Value = message.Value
}
// If headers are provided, add them to the message.
if len(message.Headers) > 0 {
for key, value := range message.Headers {
kafkaMessages[index].Headers = append(kafkaMessages[index].Headers, kafkago.Header{
Key: key,
Value: []byte(fmt.Sprint(value)),
})
}
}
}
originalErr := writer.WriteMessages(k.vu.Context(), kafkaMessages...)
k.reportWriterStats(writer.Stats())
if originalErr != nil {
err := NewXk6KafkaError(writerError, "Error writing messages.", originalErr)
logger.WithField("error", err).Error(err)
common.Throw(k.vu.Runtime(), err)
}
}
// reportWriterStats reports the writer stats to the state.
// nolint: funlen
func (k *Kafka) reportWriterStats(currentStats kafkago.WriterStats) {
state := k.vu.State()
if state == nil {
logger.WithField("error", ErrForbiddenInInitContext).Error(ErrForbiddenInInitContext)
common.Throw(k.vu.Runtime(), ErrForbiddenInInitContext)
}
ctx := k.vu.Context()
if ctx == nil {
err := NewXk6KafkaError(cannotReportStats, "Cannot report writer stats, no context.", nil)
logger.WithField("error", err).Info(err)
common.Throw(k.vu.Runtime(), err)
}
ctm := k.vu.State().Tags.GetCurrentValues()
sampleTags := ctm.Tags.With("topic", currentStats.Topic)
now := time.Now()
metrics.PushIfNotDone(ctx, state.Samples, metrics.ConnectedSamples{
Samples: []metrics.Sample{
{
Time: now,
TimeSeries: metrics.TimeSeries{
Metric: k.metrics.WriterWrites,
Tags: sampleTags,
},
Value: float64(currentStats.Writes),
Metadata: ctm.Metadata,
},
{
Time: now,
TimeSeries: metrics.TimeSeries{
Metric: k.metrics.WriterMessages,
Tags: sampleTags,
},
Value: float64(currentStats.Messages),
Metadata: ctm.Metadata,
},
{
Time: now,
TimeSeries: metrics.TimeSeries{
Metric: k.metrics.WriterBytes,
Tags: sampleTags,
},
Value: float64(currentStats.Bytes),
Metadata: ctm.Metadata,
},
{
Time: now,
TimeSeries: metrics.TimeSeries{
Metric: k.metrics.WriterErrors,
Tags: sampleTags,
},
Value: float64(currentStats.Errors),
Metadata: ctm.Metadata,
},
{
Time: now,
TimeSeries: metrics.TimeSeries{
Metric: k.metrics.WriterBatchTime,
Tags: sampleTags,
},
Value: metrics.D(currentStats.BatchTime.Avg),
Metadata: ctm.Metadata,
},
{
Time: now,
TimeSeries: metrics.TimeSeries{
Metric: k.metrics.WriterBatchQueueTime,
Tags: sampleTags,
},
Value: metrics.D(currentStats.BatchQueueTime.Avg),
Metadata: ctm.Metadata,
},
{
Time: now,
TimeSeries: metrics.TimeSeries{
Metric: k.metrics.WriterWriteTime,
Tags: sampleTags,
},
Value: metrics.D(currentStats.WriteTime.Avg),
Metadata: ctm.Metadata,
},
{
Time: now,
TimeSeries: metrics.TimeSeries{
Metric: k.metrics.WriterWaitTime,
Tags: sampleTags,
},
Value: metrics.D(currentStats.WaitTime.Avg),
Metadata: ctm.Metadata,
},
{
Time: now,
TimeSeries: metrics.TimeSeries{
Metric: k.metrics.WriterRetries,
Tags: sampleTags,
},
Value: float64(currentStats.Retries),
Metadata: ctm.Metadata,
},
{
Time: now,
TimeSeries: metrics.TimeSeries{
Metric: k.metrics.WriterBatchSize,
Tags: sampleTags,
},
Value: float64(currentStats.BatchSize.Avg),
Metadata: ctm.Metadata,
},
{
Time: now,
TimeSeries: metrics.TimeSeries{
Metric: k.metrics.WriterBatchBytes,
Tags: sampleTags,
},
Value: float64(currentStats.BatchBytes.Avg),
Metadata: ctm.Metadata,
},
{
Time: now,
TimeSeries: metrics.TimeSeries{
Metric: k.metrics.WriterMaxAttempts,
Tags: sampleTags,
},
Value: float64(currentStats.MaxAttempts),
Metadata: ctm.Metadata,
},
{
Time: now,
TimeSeries: metrics.TimeSeries{
Metric: k.metrics.WriterMaxBatchSize,
Tags: sampleTags,
},
Value: float64(currentStats.MaxBatchSize),
Metadata: ctm.Metadata,
},
{
Time: now,
TimeSeries: metrics.TimeSeries{
Metric: k.metrics.WriterBatchTimeout,
Tags: sampleTags,
},
Value: float64(currentStats.BatchTimeout),
Metadata: ctm.Metadata,
},
{
Time: now,
TimeSeries: metrics.TimeSeries{
Metric: k.metrics.WriterReadTimeout,
Tags: sampleTags,
},
Value: float64(currentStats.ReadTimeout),
Metadata: ctm.Metadata,
},
{
Time: now,
TimeSeries: metrics.TimeSeries{
Metric: k.metrics.WriterWriteTimeout,
Tags: sampleTags,
},
Value: float64(currentStats.WriteTimeout),
Metadata: ctm.Metadata,
},
{
Time: now,
TimeSeries: metrics.TimeSeries{
Metric: k.metrics.WriterRequiredAcks,
Tags: sampleTags,
},
Value: float64(currentStats.RequiredAcks),
Metadata: ctm.Metadata,
},
{
Time: now,
TimeSeries: metrics.TimeSeries{
Metric: k.metrics.WriterAsync,
Tags: sampleTags,
},
Value: metrics.B(currentStats.Async),
Metadata: ctm.Metadata,
},
},
Tags: sampleTags,
Time: now,
})
}