Missing required argument "[bootstrap-server]" Option Description ------ ----------- --bootstrap-server <String: server to REQUIRED: The server(s) to connect to. connect to> --consumer-property <String: A mechanism to pass user-defined consumer_prop> properties in the form key=value to the consumer.
时间: 2024-02-10 22:21:27 浏览: 138
Object-C语言教程:Objective-C 简介
这段信息是 Kafka 命令行工具 `kafka-console-consumer.sh` 的使用说明。其中提到了 `--bootstrap-server` 参数是必须指定的,用于指定连接的 Kafka 集群的地址,如果缺少该参数或参数值为空,则会提示缺少必要参数并退出程序。另外,`--consumer-property` 参数可以用来传递一些自定义的消费者属性,例如 `auto.offset.reset=earliest` 可以用来设置从最早的消息开始消费。如果你需要更详细的说明或有其他问题,可以继续提问。
阅读全文