@fastify/kafka
TypeScript icon, indicating that this package has built-in type declarations

2.2.1 • Public • Published

@fastify/kafka

CI NPM version js-standard-style

Fastify plugin to interact with Apache Kafka. Supports Kafka producer and consumer.
To achieve the best performance, the plugin uses node-rdkafka.

Install

npm i @fastify/kafka

Usage

const crypto = require('crypto')
const fastify = require('fastify')()
const group = crypto.randomBytes(20).toString('hex')

fastify
  .register(require('@fastify/kafka'), {
    producer: {
      'metadata.broker.list': '127.0.0.1:9092',
      'group.id': group,
      'fetch.wait.max.ms': 10,
      'fetch.error.backoff.ms': 50,
      'dr_cb': true
    },
    consumer: {
      'metadata.broker.list': '127.0.0.1:9092',
      'group.id': group,
      'fetch.wait.max.ms': 10,
      'fetch.error.backoff.ms': 50,
      'auto.offset.reset': 'earliest'
    }
  })

fastify.post('/data', (req, reply) => {
  fastify.kafka.push({
    topic: 'updates',
    payload: req.body,
    key: 'dataKey'
  })
})

fastify.kafka.subscribe('updates')
fastify.kafka.on('updates', (msg, commit) => {
  console.log(msg.value.toString())
  commit()
})

fastify.listen({ port: 3000 }, err => {
  if (err) throw err
  console.log(`server listening on ${fastify.server.address().port}`)
})

For more examples on how to use this plugin you can take a look at the examples directory.

API

This module exposes the following APIs:

Producer
  • fastify.kafka.producer: the producer instance
  • fastify.kafka.push: utility to produce a new message
Consumer
  • fastify.kafka.consumer: the consumer instance
  • fastify.kafka.consume: utility to start the message consuming
  • fastify.kafka.subscribe: utility to start the subscribe to one or more topics
  • fastify.kafka.on: topic listener

Acknowledgements

This project is kindly sponsored by:

License

Licensed under MIT.

Package Sidebar

Install

npm i @fastify/kafka

Weekly Downloads

172

Version

2.2.1

License

MIT

Unpacked Size

27.8 kB

Total Files

21

Last publish

Collaborators

  • gurgunday
  • metcoder95
  • galvez
  • simenb
  • coopflow
  • simoneb
  • rafaelgss
  • starptech
  • delvedor
  • matteo.collina
  • allevo
  • jsumners
  • zekth
  • eomm
  • fox1t
  • airhorns
  • kibertoad
  • climba03003
  • is2ei
  • fdawgs