Skip to content

caetanoburjack/kafka-project

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

2 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

kafka-project

clone the project and run:

docker-compose up -d

and

npm install

In one terminal, run:

node consumer.js

You will have something like this:

Sent message 1
Sent message 2
…
Sent message 100

In other terminal, run:

node producer.js

You will have something like this:

{ value: 'Message 1 sent by a Kafka Producer!' }
{ value: 'Message 2 sent by a Kafka Producer!' }
…
{ value: 'Message 100 sent by a Kafka Producer!' }

That means that everything is going as expected. The producer is producing the messages and the consumer is consuming the messages.

You can also track this through the Kafka UI on localhost:8081.

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages