Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/nishayo/gokafka
https://github.com/nishayo/gokafka
Last synced: 6 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/nishayo/gokafka
- Owner: nishaYO
- Created: 2024-04-20T09:26:57.000Z (7 months ago)
- Default Branch: main
- Last Pushed: 2024-05-02T14:28:42.000Z (7 months ago)
- Last Synced: 2024-10-12T13:12:47.576Z (about 1 month ago)
- Language: Go
- Size: 8.17 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Simple Kafka Producer-Consumer Pipeline in Go
## Set Up Instructions
1. Startup Kafka Server
2. Create a Kafka topic named "data-stream":
```
bin/kafka-topics.sh --create --bootstrap-server localhost:9092 --replication-factor 1 --partitions 1 --topic data-stream
```
3. Run the Producer and the Consumer Executables