Skip to content
This repository has been archived by the owner on May 23, 2024. It is now read-only.

Latest commit

 

History

History

knack-consumer-client

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

knack-consumer-client

A module for consuming records from Apache Kafka with integrated avro support.

Usage

first things first...

$ npm i @optum/knack-consumer-client

options

  • subscriptions: Array array of subscription objects
    • subscription: [Object] consumer subscription info
      • topic: [String] name of topic
      • handler: [Function] handler for each record consumed
  • consumerConfig: [Object] librd consumer config
  • topicConfig: [Object] librd topic config
  • flowMode: [Boolean] run flow mode or control message intake cadence
  • logger: [Object] logger object with trace, debug, info, error methods
  • srOptions: [Object]: options to pass to knack-sr

Examples

const knackConsumerClient = require('@optum/knack-consumer-client');

const consumerConfig = {
    'client.id': 'my-kafka-client-v1',
    'group.id': 'my-kafka-group-v1',
    'metadata.broker.list': 'localhost:9092',
    'socket.keepalive.enable': true,
    'enable.auto.commit': true
};

const topicConfig = {
    'auto.offset.reset': 'earliest',
    // eslint-disable-next-line camelcase
    event_cb: () => {}
};

const topic = 'knack-test-topic-v1';

const handler = ({key, value, topic, timestamp}) => {
    // do stuff with record
};

// connect consumer with options
const testConsumer = await knackConsumerClient.connect({
    subscriptions: [{
        topic,
        handler
    }],
    consumerConfig,
    topicConfig,
    srOptions: {
        url: 'http://localhost:8081'
    }
});

process.on('SIGINT', async () => {
    await knackConsumerClient.disconnect();
});