Skip to content

prasher1421/go-kafka

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

2 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Go Kafka Example

What this is? Apache Kafka with GO - this is one of the best ways to use Kafka with GO - using Sarama by IBM. This library is very stable, provides a lot of functionality and can 100% be used in production (unlike other kafka libraries for GO).

It's a simple system to add a message through REST API then produce it in Apache and process it in consumer/worker. It can be any time-taking process like saving it data store and performing aggregation or some computation. Setup Apache Kafka and Zookeeper

Install dependencies

Run go run producer/producer.go to start the producer which is a REST API listening on port 3000

Run go run worker/worker.go to start the consumer

Test it out!

Send a POST request to localhost:3000

This will produce a message in Apache Kafka and the consumer will process it.

curl --location --request POST '0.0.0.0:3000/api/v1/comments' \
--header 'Content-Type: application/json' \
--data-raw '{ "text":"message 1" }'

curl --location --request POST '0.0.0.0:3000/api/v1/comments' \
--header 'Content-Type: application/json' \
--data-raw '{ "text":"message 2" }'

About

Go<->Kafka connection with Sarama

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages