This commit is contained in:
Florian THIERRY
2021-04-30 15:44:28 +02:00
commit df3b76f166
27 changed files with 1052 additions and 0 deletions

11
README.md Normal file
View File

@@ -0,0 +1,11 @@
# Kafka
## Commands
### Launch CMD Producer
```bash
$ kafka-console-producer.sh --broker-list localhost:9092 --topic test
```
### Launch CMD Consumer
```bash
$ kafka-console-consumer.sh --bootstrap-server localhost:9092 --topic test
```