-
-
Notifications
You must be signed in to change notification settings - Fork 122
/
Copy pathproducer_spec.rb
860 lines (724 loc) · 24.5 KB
/
producer_spec.rb
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
# frozen_string_literal: true
require "zlib"
describe Rdkafka::Producer do
let(:producer) { rdkafka_producer_config.producer }
let(:consumer) { rdkafka_consumer_config.consumer }
after do
# Registry should always end up being empty
registry = Rdkafka::Producer::DeliveryHandle::REGISTRY
expect(registry).to be_empty, registry.inspect
producer.close
consumer.close
end
describe 'producer without auto-start' do
let(:producer) { rdkafka_producer_config.producer(native_kafka_auto_start: false) }
it 'expect to be able to start it later and close' do
producer.start
producer.close
end
it 'expect to be able to close it without starting' do
producer.close
end
end
describe '#name' do
it { expect(producer.name).to include('rdkafka#producer-') }
end
describe '#produce with topic config alterations' do
context 'when config is not valid' do
it 'expect to raise error' do
expect do
producer.produce(topic: 'test', payload: '', topic_config: { 'invalid': 'invalid' })
end.to raise_error(Rdkafka::Config::ConfigError)
end
end
context 'when config is valid' do
it 'expect to raise error' do
expect do
producer.produce(topic: 'test', payload: '', topic_config: { 'acks': 1 }).wait
end.not_to raise_error
end
context 'when alteration should change behavior' do
# This is set incorrectly for a reason
# If alteration would not work, this will hang the spec suite
let(:producer) do
rdkafka_producer_config(
'message.timeout.ms': 1_000_000,
:"bootstrap.servers" => "localhost:9094",
).producer
end
it 'expect to give up on delivery fast based on alteration config' do
expect do
producer.produce(
topic: 'produce_config_test',
payload: 'test',
topic_config: {
'compression.type': 'gzip',
'message.timeout.ms': 1
}
).wait
end.to raise_error(Rdkafka::RdkafkaError, /msg_timed_out/)
end
end
end
end
context "delivery callback" do
context "with a proc/lambda" do
it "should set the callback" do
expect {
producer.delivery_callback = lambda do |delivery_handle|
puts delivery_handle
end
}.not_to raise_error
expect(producer.delivery_callback).to respond_to :call
end
it "should call the callback when a message is delivered" do
@callback_called = false
producer.delivery_callback = lambda do |report|
expect(report).not_to be_nil
expect(report.label).to eq "label"
expect(report.partition).to eq 1
expect(report.offset).to be >= 0
expect(report.topic_name).to eq "produce_test_topic"
@callback_called = true
end
# Produce a message
handle = producer.produce(
topic: "produce_test_topic",
payload: "payload",
key: "key",
label: "label"
)
expect(handle.label).to eq "label"
# Wait for it to be delivered
handle.wait(max_wait_timeout: 15)
# Join the producer thread.
producer.close
# Callback should have been called
expect(@callback_called).to be true
end
it "should provide handle" do
@callback_handle = nil
producer.delivery_callback = lambda { |_, handle| @callback_handle = handle }
# Produce a message
handle = producer.produce(
topic: "produce_test_topic",
payload: "payload",
key: "key"
)
# Wait for it to be delivered
handle.wait(max_wait_timeout: 15)
# Join the producer thread.
producer.close
expect(handle).to be @callback_handle
end
end
context "with a callable object" do
it "should set the callback" do
callback = Class.new do
def call(stats); end
end
expect {
producer.delivery_callback = callback.new
}.not_to raise_error
expect(producer.delivery_callback).to respond_to :call
end
it "should call the callback when a message is delivered" do
called_report = []
callback = Class.new do
def initialize(called_report)
@called_report = called_report
end
def call(report)
@called_report << report
end
end
producer.delivery_callback = callback.new(called_report)
# Produce a message
handle = producer.produce(
topic: "produce_test_topic",
payload: "payload",
key: "key"
)
# Wait for it to be delivered
handle.wait(max_wait_timeout: 15)
# Join the producer thread.
producer.close
# Callback should have been called
expect(called_report.first).not_to be_nil
expect(called_report.first.partition).to eq 1
expect(called_report.first.offset).to be >= 0
expect(called_report.first.topic_name).to eq "produce_test_topic"
end
it "should provide handle" do
callback_handles = []
callback = Class.new do
def initialize(callback_handles)
@callback_handles = callback_handles
end
def call(_, handle)
@callback_handles << handle
end
end
producer.delivery_callback = callback.new(callback_handles)
# Produce a message
handle = producer.produce(
topic: "produce_test_topic",
payload: "payload",
key: "key"
)
# Wait for it to be delivered
handle.wait(max_wait_timeout: 15)
# Join the producer thread.
producer.close
# Callback should have been called
expect(handle).to be callback_handles.first
end
end
it "should not accept a callback that's not callable" do
expect {
producer.delivery_callback = 'a string'
}.to raise_error(TypeError)
end
end
it "should require a topic" do
expect {
producer.produce(
payload: "payload",
key: "key"
)
}.to raise_error ArgumentError, /missing keyword: [\:]?topic/
end
it "should produce a message" do
# Produce a message
handle = producer.produce(
topic: "produce_test_topic",
payload: "payload",
key: "key",
label: "label"
)
# Should be pending at first
expect(handle.pending?).to be true
expect(handle.label).to eq "label"
# Check delivery handle and report
report = handle.wait(max_wait_timeout: 5)
expect(handle.pending?).to be false
expect(report).not_to be_nil
expect(report.partition).to eq 1
expect(report.offset).to be >= 0
expect(report.label).to eq "label"
# Flush and close producer
producer.flush
producer.close
# Consume message and verify its content
message = wait_for_message(
topic: "produce_test_topic",
delivery_report: report,
consumer: consumer
)
expect(message.partition).to eq 1
expect(message.payload).to eq "payload"
expect(message.key).to eq "key"
expect(message.timestamp).to be_within(10).of(Time.now)
end
it "should produce a message with a specified partition" do
# Produce a message
handle = producer.produce(
topic: "produce_test_topic",
payload: "payload partition",
key: "key partition",
partition: 1
)
report = handle.wait(max_wait_timeout: 5)
# Consume message and verify its content
message = wait_for_message(
topic: "produce_test_topic",
delivery_report: report,
consumer: consumer
)
expect(message.partition).to eq 1
expect(message.key).to eq "key partition"
end
it "should produce a message to the same partition with a similar partition key" do
# Avoid partitioner collisions.
while true
key = ('a'..'z').to_a.shuffle.take(10).join('')
partition_key = ('a'..'z').to_a.shuffle.take(10).join('')
partition_count = producer.partition_count('partitioner_test_topic')
break if (Zlib.crc32(key) % partition_count) != (Zlib.crc32(partition_key) % partition_count)
end
# Produce a message with key, partition_key and key + partition_key
messages = [{key: key}, {partition_key: partition_key}, {key: key, partition_key: partition_key}]
messages = messages.map do |m|
handle = producer.produce(
topic: "partitioner_test_topic",
payload: "payload partition",
key: m[:key],
partition_key: m[:partition_key]
)
report = handle.wait(max_wait_timeout: 5)
wait_for_message(
topic: "partitioner_test_topic",
delivery_report: report,
)
end
expect(messages[0].partition).not_to eq(messages[2].partition)
expect(messages[1].partition).to eq(messages[2].partition)
expect(messages[0].key).to eq key
expect(messages[1].key).to be_nil
expect(messages[2].key).to eq key
end
it "should produce a message with empty string without crashing" do
messages = [{key: 'a', partition_key: ''}]
messages = messages.map do |m|
handle = producer.produce(
topic: "partitioner_test_topic",
payload: "payload partition",
key: m[:key],
partition_key: m[:partition_key]
)
report = handle.wait(max_wait_timeout: 5)
wait_for_message(
topic: "partitioner_test_topic",
delivery_report: report,
)
end
expect(messages[0].partition).to eq 0
expect(messages[0].key).to eq 'a'
end
it "should produce a message with utf-8 encoding" do
handle = producer.produce(
topic: "produce_test_topic",
payload: "Τη γλώσσα μου έδωσαν ελληνική",
key: "key utf8"
)
report = handle.wait(max_wait_timeout: 5)
# Consume message and verify its content
message = wait_for_message(
topic: "produce_test_topic",
delivery_report: report,
consumer: consumer
)
expect(message.partition).to eq 1
expect(message.payload.force_encoding("utf-8")).to eq "Τη γλώσσα μου έδωσαν ελληνική"
expect(message.key).to eq "key utf8"
end
context "timestamp" do
it "should raise a type error if not nil, integer or time" do
expect {
producer.produce(
topic: "produce_test_topic",
payload: "payload timestamp",
key: "key timestamp",
timestamp: "10101010"
)
}.to raise_error TypeError
end
it "should produce a message with an integer timestamp" do
handle = producer.produce(
topic: "produce_test_topic",
payload: "payload timestamp",
key: "key timestamp",
timestamp: 1505069646252
)
report = handle.wait(max_wait_timeout: 5)
# Consume message and verify its content
message = wait_for_message(
topic: "produce_test_topic",
delivery_report: report,
consumer: consumer
)
expect(message.partition).to eq 2
expect(message.key).to eq "key timestamp"
expect(message.timestamp).to eq Time.at(1505069646, 252_000)
end
it "should produce a message with a time timestamp" do
handle = producer.produce(
topic: "produce_test_topic",
payload: "payload timestamp",
key: "key timestamp",
timestamp: Time.at(1505069646, 353_000)
)
report = handle.wait(max_wait_timeout: 5)
# Consume message and verify its content
message = wait_for_message(
topic: "produce_test_topic",
delivery_report: report,
consumer: consumer
)
expect(message.partition).to eq 2
expect(message.key).to eq "key timestamp"
expect(message.timestamp).to eq Time.at(1505069646, 353_000)
end
end
it "should produce a message with nil key" do
handle = producer.produce(
topic: "produce_test_topic",
payload: "payload no key"
)
report = handle.wait(max_wait_timeout: 5)
# Consume message and verify its content
message = wait_for_message(
topic: "produce_test_topic",
delivery_report: report,
consumer: consumer
)
expect(message.key).to be_nil
expect(message.payload).to eq "payload no key"
end
it "should produce a message with nil payload" do
handle = producer.produce(
topic: "produce_test_topic",
key: "key no payload"
)
report = handle.wait(max_wait_timeout: 5)
# Consume message and verify its content
message = wait_for_message(
topic: "produce_test_topic",
delivery_report: report,
consumer: consumer
)
expect(message.key).to eq "key no payload"
expect(message.payload).to be_nil
end
it "should produce a message with headers" do
handle = producer.produce(
topic: "produce_test_topic",
payload: "payload headers",
key: "key headers",
headers: { foo: :bar, baz: :foobar }
)
report = handle.wait(max_wait_timeout: 5)
# Consume message and verify its content
message = wait_for_message(
topic: "produce_test_topic",
delivery_report: report,
consumer: consumer
)
expect(message.payload).to eq "payload headers"
expect(message.key).to eq "key headers"
expect(message.headers["foo"]).to eq "bar"
expect(message.headers["baz"]).to eq "foobar"
expect(message.headers["foobar"]).to be_nil
end
it "should produce a message with empty headers" do
handle = producer.produce(
topic: "produce_test_topic",
payload: "payload headers",
key: "key headers",
headers: {}
)
report = handle.wait(max_wait_timeout: 5)
# Consume message and verify its content
message = wait_for_message(
topic: "produce_test_topic",
delivery_report: report,
consumer: consumer
)
expect(message.payload).to eq "payload headers"
expect(message.key).to eq "key headers"
expect(message.headers).to be_empty
end
it "should produce message that aren't waited for and not crash" do
5.times do
200.times do
producer.produce(
topic: "produce_test_topic",
payload: "payload not waiting",
key: "key not waiting"
)
end
# Allow some time for a GC run
sleep 1
end
# Wait for the delivery notifications
10.times do
break if Rdkafka::Producer::DeliveryHandle::REGISTRY.empty?
sleep 1
end
end
it "should produce a message in a forked process", skip: defined?(JRUBY_VERSION) && "Kernel#fork is not available" do
# Fork, produce a message, send the report over a pipe and
# wait for and check the message in the main process.
reader, writer = IO.pipe
pid = fork do
reader.close
# Avoid sharing the client between processes.
producer = rdkafka_producer_config.producer
handle = producer.produce(
topic: "produce_test_topic",
payload: "payload-forked",
key: "key-forked"
)
report = handle.wait(max_wait_timeout: 5)
report_json = JSON.generate(
"partition" => report.partition,
"offset" => report.offset,
"topic_name" => report.topic_name
)
writer.write(report_json)
writer.close
producer.flush
producer.close
end
Process.wait(pid)
writer.close
report_hash = JSON.parse(reader.read)
report = Rdkafka::Producer::DeliveryReport.new(
report_hash["partition"],
report_hash["offset"],
report_hash["topic_name"]
)
reader.close
# Consume message and verify its content
message = wait_for_message(
topic: "produce_test_topic",
delivery_report: report,
consumer: consumer
)
expect(message.partition).to eq 0
expect(message.payload).to eq "payload-forked"
expect(message.key).to eq "key-forked"
end
it "should raise an error when producing fails" do
expect(Rdkafka::Bindings).to receive(:rd_kafka_producev).and_return(20)
expect {
producer.produce(
topic: "produce_test_topic",
key: "key error"
)
}.to raise_error Rdkafka::RdkafkaError
end
it "should raise a timeout error when waiting too long" do
handle = producer.produce(
topic: "produce_test_topic",
payload: "payload timeout",
key: "key timeout"
)
expect {
handle.wait(max_wait_timeout: 0)
}.to raise_error Rdkafka::Producer::DeliveryHandle::WaitTimeoutError
# Waiting a second time should work
handle.wait(max_wait_timeout: 5)
end
context "methods that should not be called after a producer has been closed" do
before do
producer.close
end
# Affected methods and a non-invalid set of parameters for the method
{
:produce => { topic: nil },
:partition_count => nil,
}.each do |method, args|
it "raises an exception if #{method} is called" do
expect {
if args.is_a?(Hash)
producer.public_send(method, **args)
else
producer.public_send(method, args)
end
}.to raise_exception(Rdkafka::ClosedProducerError, /#{method.to_s}/)
end
end
end
context "when not being able to deliver the message" do
let(:producer) do
rdkafka_producer_config(
"bootstrap.servers": "localhost:9093",
"message.timeout.ms": 100
).producer
end
it "should contain the error in the response when not deliverable" do
handler = producer.produce(topic: 'produce_test_topic', payload: nil, label: 'na')
# Wait for the async callbacks and delivery registry to update
sleep(2)
expect(handler.create_result.error).to be_a(Rdkafka::RdkafkaError)
expect(handler.create_result.label).to eq('na')
end
end
describe '#partition_count' do
it { expect(producer.partition_count('consume_test_topic')).to eq(3) }
context 'when the partition count value is already cached' do
before do
producer.partition_count('consume_test_topic')
allow(::Rdkafka::Metadata).to receive(:new).and_call_original
end
it 'expect not to query it again' do
producer.partition_count('consume_test_topic')
expect(::Rdkafka::Metadata).not_to have_received(:new)
end
end
context 'when the partition count value was cached but time expired' do
before do
allow(::Process).to receive(:clock_gettime).and_return(0, 30.02)
producer.partition_count('consume_test_topic')
allow(::Rdkafka::Metadata).to receive(:new).and_call_original
end
it 'expect not to query it again' do
producer.partition_count('consume_test_topic')
expect(::Rdkafka::Metadata).to have_received(:new)
end
end
context 'when the partition count value was cached and time did not expire' do
before do
allow(::Process).to receive(:clock_gettime).and_return(0, 29.001)
producer.partition_count('consume_test_topic')
allow(::Rdkafka::Metadata).to receive(:new).and_call_original
end
it 'expect not to query it again' do
producer.partition_count('consume_test_topic')
expect(::Rdkafka::Metadata).not_to have_received(:new)
end
end
end
describe '#flush' do
it "should return flush when it can flush all outstanding messages or when no messages" do
producer.produce(
topic: "produce_test_topic",
payload: "payload headers",
key: "key headers",
headers: {}
)
expect(producer.flush(5_000)).to eq(true)
end
context 'when it cannot flush due to a timeout' do
let(:producer) do
rdkafka_producer_config(
"bootstrap.servers": "localhost:9093",
"message.timeout.ms": 2_000
).producer
end
after do
# Allow rdkafka to evict message preventing memory-leak
sleep(2)
end
it "should return false on flush when cannot deliver and beyond timeout" do
producer.produce(
topic: "produce_test_topic",
payload: "payload headers",
key: "key headers",
headers: {}
)
expect(producer.flush(1_000)).to eq(false)
end
end
context 'when there is a different error' do
before { allow(Rdkafka::Bindings).to receive(:rd_kafka_flush).and_return(-199) }
it 'should raise it' do
expect { producer.flush }.to raise_error(Rdkafka::RdkafkaError)
end
end
end
describe '#purge' do
context 'when no outgoing messages' do
it { expect(producer.purge).to eq(true) }
end
context 'when librdkafka purge returns an error' do
before { expect(Rdkafka::Bindings).to receive(:rd_kafka_purge).and_return(-153) }
it 'expect to raise an error' do
expect { producer.purge }.to raise_error(Rdkafka::RdkafkaError, /retry/)
end
end
context 'when there are outgoing things in the queue' do
let(:producer) do
rdkafka_producer_config(
"bootstrap.servers": "localhost:9093",
"message.timeout.ms": 2_000
).producer
end
it "should should purge and move forward" do
producer.produce(
topic: "produce_test_topic",
payload: "payload headers"
)
expect(producer.purge).to eq(true)
expect(producer.flush(1_000)).to eq(true)
end
it "should materialize the delivery handles" do
handle = producer.produce(
topic: "produce_test_topic",
payload: "payload headers"
)
expect(producer.purge).to eq(true)
expect { handle.wait }.to raise_error(Rdkafka::RdkafkaError, /purge_queue/)
end
context "when using delivery_callback" do
let(:delivery_reports) { [] }
let(:delivery_callback) do
->(delivery_report) { delivery_reports << delivery_report }
end
before { producer.delivery_callback = delivery_callback }
it "should run the callback" do
handle = producer.produce(
topic: "produce_test_topic",
payload: "payload headers"
)
expect(producer.purge).to eq(true)
# queue purge
expect(delivery_reports[0].error).to eq(-152)
end
end
end
end
describe '#oauthbearer_set_token' do
context 'when sasl not configured' do
it 'should return RD_KAFKA_RESP_ERR__STATE' do
response = producer.oauthbearer_set_token(
token: "foo",
lifetime_ms: Time.now.to_i*1000 + 900 * 1000,
principal_name: "kafka-cluster"
)
expect(response).to eq(Rdkafka::Bindings::RD_KAFKA_RESP_ERR__STATE)
end
end
context 'when sasl configured' do
it 'should succeed' do
producer_sasl = rdkafka_producer_config(
{
"security.protocol": "sasl_ssl",
"sasl.mechanisms": 'OAUTHBEARER'
}
).producer
response = producer_sasl.oauthbearer_set_token(
token: "foo",
lifetime_ms: Time.now.to_i*1000 + 900 * 1000,
principal_name: "kafka-cluster"
)
expect(response).to eq(0)
end
end
end
describe "#produce with headers" do
it "should produce a message with array headers" do
headers = {
"version" => ["2.1.3", "2.1.4"],
"type" => "String"
}
report = producer.produce(
topic: "consume_test_topic",
key: "key headers",
headers: headers
).wait
message = wait_for_message(topic: "consume_test_topic", consumer: consumer, delivery_report: report)
expect(message).to be
expect(message.key).to eq('key headers')
expect(message.headers['type']).to eq('String')
expect(message.headers['version']).to eq(["2.1.3", "2.1.4"])
end
it "should produce a message with single value headers" do
headers = {
"version" => "2.1.3",
"type" => "String"
}
report = producer.produce(
topic: "consume_test_topic",
key: "key headers",
headers: headers
).wait
message = wait_for_message(topic: "consume_test_topic", consumer: consumer, delivery_report: report)
expect(message).to be
expect(message.key).to eq('key headers')
expect(message.headers['type']).to eq('String')
expect(message.headers['version']).to eq('2.1.3')
end
end
end