Robin Moffatt created KAFKA-13520:
-------------------------------------
Summary: Quickstart does not work at topic creation step
Key: KAFKA-13520
URL: https://issues.apache.org/jira/browse/KAFKA-13520
Project: Kafka
Issue Type: Bug
Components: website
Reporter: Robin Moffatt
Step 3 fails
{code:java}
$ bin/kafka-topics.sh --create --topic quickstart-events --bootstrap-server
localhost:9092
Missing required argument "[partitions]" {code}
Also needs `replication-factor`
Correct statement is:
{code:java}
$ bin/kafka-topics.sh --create --bootstrap-server localhost:9092 --partitions 1
--replication-factor 1 --topic quickstart-events {code}
--
This message was sent by Atlassian Jira
(v8.20.1#820001)