[jira] [Commented] (KAFKA-13520) Quickstart does not work at topic creation step

2021-12-08 Thread ASF GitHub Bot (Jira)


[ 
https://issues.apache.org/jira/browse/KAFKA-13520?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=17455286#comment-17455286
 ] 

ASF GitHub Bot commented on KAFKA-13520:


bbejeck commented on pull request #387:
URL: https://github.com/apache/kafka-site/pull/387#issuecomment-988878505


   thanks for the fix @rmoff!


-- 
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: dev-unsubscr...@kafka.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


> 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
>Affects Versions: 3.0.0
>Reporter: Robin Moffatt
>Priority: Minor
>
> 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)


[jira] [Commented] (KAFKA-13520) Quickstart does not work at topic creation step

2021-12-08 Thread ASF GitHub Bot (Jira)


[ 
https://issues.apache.org/jira/browse/KAFKA-13520?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=17455285#comment-17455285
 ] 

ASF GitHub Bot commented on KAFKA-13520:


bbejeck merged pull request #387:
URL: https://github.com/apache/kafka-site/pull/387


   


-- 
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: dev-unsubscr...@kafka.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


> 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
>Affects Versions: 3.0.0
>Reporter: Robin Moffatt
>Priority: Minor
>
> 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)


[jira] [Commented] (KAFKA-13520) Quickstart does not work at topic creation step

2021-12-08 Thread Luke Chen (Jira)


[ 
https://issues.apache.org/jira/browse/KAFKA-13520?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=17455213#comment-17455213
 ] 

Luke Chen commented on KAFKA-13520:
---

Make sense! Thanks.

> 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
>Affects Versions: 3.0.0
>Reporter: Robin Moffatt
>Priority: Minor
>
> 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)


[jira] [Commented] (KAFKA-13520) Quickstart does not work at topic creation step

2021-12-08 Thread Robin Moffatt (Jira)


[ 
https://issues.apache.org/jira/browse/KAFKA-13520?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=17455207#comment-17455207
 ] 

Robin Moffatt commented on KAFKA-13520:
---

Thanks Luke, good that it will be fixed. Is the release of those imminent? The 
problem is that today anyone following the quickstart will have a bad time, so 
would be good to fix in the interim. 

> 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
>Affects Versions: 3.0.0
>Reporter: Robin Moffatt
>Priority: Minor
>
> 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)


[jira] [Commented] (KAFKA-13520) Quickstart does not work at topic creation step

2021-12-08 Thread Luke Chen (Jira)


[ 
https://issues.apache.org/jira/browse/KAFKA-13520?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=17455205#comment-17455205
 ] 

Luke Chen commented on KAFKA-13520:
---

[~rmoff] , thanks for the report. But this bug is fixed in KAFKA-13396, and 
will be in V3.1.0/V3.0.1. Thanks.

> 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
>Affects Versions: 3.0.0
>Reporter: Robin Moffatt
>Priority: Minor
>
> 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)


[jira] [Commented] (KAFKA-13520) Quickstart does not work at topic creation step

2021-12-08 Thread Robin Moffatt (Jira)


[ 
https://issues.apache.org/jira/browse/KAFKA-13520?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=17455196#comment-17455196
 ] 

Robin Moffatt commented on KAFKA-13520:
---

https://github.com/apache/kafka-site/pull/387

> 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
>Priority: Minor
>
> 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)