本文属于机器翻译版本。若本译文内容与英语原文存在差异,则一律以英文原文为准。
创建 Apache Kafka 主题
在此步骤中,您将使用先前创建的客户端计算机在无服务器集群上创建主题。
要创建主题并向其写入数据
-
在以下
export
命令中,替换my-endpoint
使用您在创建集群后保存的 bootstrap-server 字符串。然后,转到客户端计算机上的kafka_2.12-2.8.1/bin
目录并运行export
命令。export BS=
my-endpoint
运行以下命令以创建名为
msk-serverless-tutorial
的主题。<path-to-your-kafka-installation>
/bin/kafka-topics.sh --bootstrap-server $BS --command-config client.properties --create --topic msk-serverless-tutorial --partitions 6
下一步