Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/robsantossilva/intensivao-golang-6

Esquenta imersão 6 golang kafka
https://github.com/robsantossilva/intensivao-golang-6

Last synced: about 1 month ago
JSON representation

Esquenta imersão 6 golang kafka

Awesome Lists containing this project

README

        

### Kafka Commands

Creating new topic
``` bash
kafka-topics --bootstrap-server=localhost:9092 --topic courses --create --partitions=3 --replication-factor=1
```

Start a producer
``` bash
kafka-console-producer --bootstrap-server=localhost:9092 --topic=courses
```