Skip to content
This repository has been archived by the owner on May 30, 2024. It is now read-only.

Commit

Permalink
Examples in README
Browse files Browse the repository at this point in the history
  • Loading branch information
Mick Staugaard committed Jan 6, 2020
1 parent fc0ec82 commit d9893ce
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,12 @@
The CLI tools that ship with Kafka are super slow, so I thought I'd implement
a subset of it in GO.

Currently only topic creation and deletion is supported.
Currently only topic creation and deletion is supported.

```
kafkaCLI createTopic --bootstrap-server kafka:9092 --partitions 4 --replication-factor 1 --config message.format.version=2.0 --if-not-exists topic1 topic2
```

```
kafkaCLI deleteTopic --bootstrap-server kafka:9092 topic1 topic2
```

0 comments on commit d9893ce

Please sign in to comment.