FlorianLehmann opened a new pull request #11425:
URL: https://github.com/apache/kafka/pull/11425
In the quickstart documentation (quickstart_createtopic) , there is a
command specified to create a topic:
`$ bin/kafka-topics.sh --create --topic quickstart-events
--bootstrap-server localhost:9092`
However, it is no longer working due to missing arguments:
- partitions
- replications-factor
The previous command should be replaced with this one:
`$ bin/kafka-topics.sh --create --topic quickstart-events
--bootstrap-server localhost:9092 --partitions 1 --replication-factor 1`
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]