Skip to content

Latest commit

 

History

History

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Kafka Sarama instrumentation example

A Kafka producer and consumer using Sarama with instrumentation.

These instructions expect you have docker-compose installed.

Bring up the Kafka and ZooKeeper services to run the example:

docker-compose up -d zoo kafka

Then up the kafka-producer service to produce a message into Kafka:

docker-compose up kafka-producer

At last, up the kafka-consumer service to consume messages from Kafka:

docker-compose up kafka-consumer

Shut down the services when you are finished with the example:

docker-compose down