Florian Lehmann created KAFKA-13393:
---------------------------------------
Summary: Update website documentation to include required
arguments when creating a topic
Key: KAFKA-13393
URL: https://issues.apache.org/jira/browse/KAFKA-13393
Project: Kafka
Issue Type: Bug
Components: docs, documentation, website
Affects Versions: 3.0.0
Reporter: Florian Lehmann
In the quickstart documentation
([quickstart_createtopic|https://kafka.apache.org/quickstart#quickstart_createtopic])
, there is a command specified to create a topic:
{code:java}
$ bin/kafka-topics.sh --create --topic quickstart-events --bootstrap-server
localhost:9092
{code}
However, it is no longer working due to missing arguments:
* partitions
* replications-factor
The previous command should be replaced with this one:
{code:java}
$ bin/kafka-topics.sh --create --topic quickstart-events --bootstrap-server
localhost:9092 --partitions 1 --replication-factor 1
{code}
--
This message was sent by Atlassian Jira
(v8.3.4#803005)