Skip to content

Commit

Permalink
Added comment to be more ready for when Zookeeper is no longer used, …
Browse files Browse the repository at this point in the history
…Suggested by hkairi
  • Loading branch information
johnward committed Oct 20, 2024
1 parent f849e93 commit 4a6e275
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,6 1,5 @@
# Kafka Rust Client


## Project Status

This project is starting to be maintained by John Ward, the current status is that I am bringing the project up to date with the latest dependencies, removing deprecated Rust code and adjusting the tests.
Expand Down Expand Up @@ -108,6 107,12 @@ distribution):
kafka-topics.sh --topic my-topic --create --zookeeper localhost:2181 --partitions 1 --replication-factor 1
```

Zookeeper will be removed in the next major kafka release. Using `--bootstrap-server` to be more ready.

```
kafka-topics.sh --topic my-topic --create --bootstrap-server localhost:9092 --partitions 1 --replication-factor 1
```

See also [Kafka's quickstart guide](https://kafka.apache.org/documentation.html#quickstart)
for more information.

Expand Down

0 comments on commit 4a6e275

Please sign in to comment.