Skip to content

Files

Latest commit

 

History

History

kafka

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 
 
 
 
 
 
 

kafka

Tiny project to play around with Kafka producer and consumer APIs.

Instructions

  1. Run a single broker Kafka cluster locally:
$ confluent local kafka start
  1. Create a topic on the Kafka cluster:
$ confluent local kafka topic create purchases
  1. Run the producer
$ make run-producer
  1. Run the consumer
$ make run-consumer