Skip to content

Latest commit

 

History

History
12 lines (10 loc) · 658 Bytes

README.md

File metadata and controls

12 lines (10 loc) · 658 Bytes

Data Ingestion Platform

Please use this readme as your projects readme. You can find instructions for the challenge in the INSTRUCTIONS.pdf file.

Managing kafka instance on docker

Create Kafka topic

docker exec kafka kafka-topics --create --bootstrap-server localhost:29092 --partitions 1 --replication-factor 1 --topic VEHICLE_DIRECTION_UPDATED

View messages from a particular topic

docker exec kafka kafka-console-consumer --topic VEHICLE_DIRECTION_UPDATED --from-beginning --max-messages 10 --bootstrap-server localhost:29092

List all topic

docker exec kafka kafka-topics --list --bootstrap-server localhost:29092