kafka生产者启动报错,WARN [Producer clientId=console-producer] Bootstrap broker localhost:9092 (id: -1 rack:
1.kafka下载的3.6.2版本的
2.原因 --broker-list 弃用,应该用 --bootstrap-server
3.启动生产者,.\bin\windows\kafka-console-producer.bat --bootstrap-server localhost:9092 --topic test
4.启动消费者,.\bin\windows\kafka-console-consumer.bat --bootstrap-server localhost:9092 --topic test --from-beginning
5.注意,cmd中没有.\