Skip to content

Commit df11758

Browse files
committed
[.] Update readme kafka
1 parent e1b4e8c commit df11758

File tree

2 files changed

+14
-0
lines changed

2 files changed

+14
-0
lines changed

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55
- [api-practice](https://github.com/aofdev/rust-practice/tree/main/api-practice)
66
- [async-practice](https://github.com/aofdev/rust-practice/tree/main/async-practice)
77
- [error-handling-practice](https://github.com/aofdev/rust-practice/tree/main/error-handling)
8+
- [kafka-practice](https://github.com/aofdev/rust-practice/tree/main/kafka)
89
- [matching-keyword ⭐️](https://github.com/aofdev/rust-practice/tree/main/matching-keyword)
910
- [parser-csv-in-gz](https://github.com/aofdev/rust-practice/tree/main/parser-csv-in-gz)
1011
- [practices](https://github.com/aofdev/rust-practice/tree/main/practices)

kafka/README.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
# Kafka Practice
2+
3+
## Quick Start ⚡️
4+
```bash
5+
# Run Producer
6+
cargo run --bin producer -- --topic test-async-processing
7+
8+
# Run Stream Consumer
9+
cargo run --bin async_processing -- --input-topic test-async-processing --output-topic test-async-result
10+
11+
# Run Consumer
12+
cargo run --bin consumer -- --topics test-async-result
13+
```

0 commit comments

Comments
 (0)