-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathconsumer-raw-rdkafka.js
76 lines (64 loc) · 1.6 KB
/
consumer-raw-rdkafka.js
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
/*
* confluent-kafka-javascript - Node.js wrapper for RdKafka C/C++ library
*
* Copyright (c) 2016-2023 Blizzard Entertainment
*
* This software may be modified and distributed under the terms
* of the MIT license. See the LICENSE.txt file for details.
*/
var Kafka = require('../');
var count = 0;
var total = 0;
var store = [];
var host = process.argv[2] || 'localhost:9092';
var topic = process.argv[3] || 'test';
var consumer = new Kafka.KafkaConsumer({
'metadata.broker.list': host,
'group.id': 'confluent-kafka-javascript-bench-s',
'fetch.wait.max.ms': 100,
'fetch.message.max.bytes': 1024 * 1024,
'enable.auto.commit': false
// paused: true,
}, {
'auto.offset.reset': 'earliest'
});
var interval;
consumer.connect()
.once('ready', function() {
consumer.subscribe([topic]);
consumer.consume();
})
.on('rebalance', function() {
console.log('rebalance');
})
.once('data', function() {
interval = setInterval(function() {
console.log('%d messages per second', count);
if (count > 0) {
store.push(count);
}
count = 0;
}, 1000);
})
.on('data', function(message) {
count += 1;
total += 1;
});
function shutdown() {
clearInterval(interval);
if (store.length > 0) {
var calc = 0;
for (var x in store) {
calc += store[x];
}
var mps = parseFloat(calc * 1.0/store.length);
console.log('%d messages per second on average', mps);
}
var killTimer = setTimeout(function() {
process.exit();
}, 5000);
consumer.disconnect(function() {
clearTimeout(killTimer);
process.exit();
});
}