File tree 2 files changed +14
-0
lines changed 2 files changed +14
-0
lines changed Original file line number Diff line number Diff line change 5
5
- [ api-practice] ( https://github.com/aofdev/rust-practice/tree/main/api-practice )
6
6
- [ async-practice] ( https://github.com/aofdev/rust-practice/tree/main/async-practice )
7
7
- [ 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 )
8
9
- [ matching-keyword ⭐️] ( https://github.com/aofdev/rust-practice/tree/main/matching-keyword )
9
10
- [ parser-csv-in-gz] ( https://github.com/aofdev/rust-practice/tree/main/parser-csv-in-gz )
10
11
- [ practices] ( https://github.com/aofdev/rust-practice/tree/main/practices )
Original file line number Diff line number Diff line change
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
+ ```
You can’t perform that action at this time.
0 commit comments