jnorinder commented on code in PR #9627: URL: https://github.com/apache/pinot/pull/9627#discussion_r999799388
########## kubernetes/helm/pinot/README.md: ########## @@ -273,8 +273,8 @@ helm install --namespace "pinot-quickstart" --name kafka incubator/kafka --set #### Create Kafka topic ```bash -kubectl -n pinot-quickstart exec kafka-0 -- kafka-topics --zookeeper kafka-zookeeper:2181 --topic flights-realtime --create --partitions 1 --replication-factor 1 -kubectl -n pinot-quickstart exec kafka-0 -- kafka-topics --zookeeper kafka-zookeeper:2181 --topic flights-realtime-avro --create --partitions 1 --replication-factor 1 +kubectl -n pinot-quickstart exec kafka-0 -- kafka-topics.sh --bootstrap-server kafka-0:9092 --topic flights-realtime --create --partitions 1 --replication-factor 1 +kubectl -n pinot-quickstart exec kafka-0 -- kafka-topics.sh --bootstrap-server kafka-0:9092 --topic flights-realtime-avro --create --partitions 1 --replication-factor 1 Review Comment: Well, since I'm new to this code base I can't be sure. However, as far as I know regarding Kafka they (as in both Apache Kafka and Bitnami) they have done changes to parameter names such as the bootstrap-server parameter. -- 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] --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
