Skip to content
/ kafka Public

a single node kafka and kafka-ui docker compose example

Notifications You must be signed in to change notification settings

w3rm/kafka

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

6 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

kafka and kafka-ui

projects web pages

kafka

https://developer.confluent.io/quickstart/kafka-docker/

provectus/kafka-ui

https://github.com/provectus/kafka-ui

running docker images

sudo docker compose up --build -d

testing kafka

creating a topic

docker exec broker \
kafka-topics --bootstrap-server broker:9092 \
             --create \
             --topic quickstart

produce message to topic

docker exec --interactive --tty broker \
kafka-console-producer --bootstrap-server broker:9092 \
                       --topic quickstart

consume message from topic

docker exec --interactive --tty broker \
kafka-console-consumer --bootstrap-server broker:9092 \
                       --topic quickstart \
                       --from-beginning

kafka-ui - visualizing kafka

http://localhost:8080

example consuming message from topic using .net core

cd console-app
dotnet run

About

a single node kafka and kafka-ui docker compose example

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages