Skip to content

Instantly share code, notes, and snippets.

@thakursaurabh1998
Created August 9, 2020 15:26
Show Gist options
  • Save thakursaurabh1998/94a23e599af110df429115c076c5a5b8 to your computer and use it in GitHub Desktop.
Save thakursaurabh1998/94a23e599af110df429115c076c5a5b8 to your computer and use it in GitHub Desktop.
const { ConsumerGroup } = require('kafka-node');
const options = {
kafkaHost: 'broker:9092',
groupId: 'order-service',
fetchMaxBytes: 100 * 1024, // 100 KB
};
const consumer = new ConsumerGroup(options, 'OrderTopic');
consumer.on('message', (data) => {
// queue data available here
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment