Simple pub sub with kafka
- Deploy kafka and zookeeper
make build
- Start producer
make run-producer
- Start consumer
make run-consumer
- Deploy kafka and zookeeper
./run.sh
- Start producer
go run producer/main.go --bootstrap-server localhost:9093 --topic {Topic}
- Start consumer
go run consumer/main.go --bootstrap-server localhost:9093 --topic log