from confluent_kafka
import Producer
p = Producer({'bootstrap.servers': 'localhost:9092'})# localhost has IP
address of the linux system
p.produce('topic', "Hello World!")
p.flush()
我在python空闲窗口中运行了以上代码,并在使用腻子的公司unix系统中运行了zookeeper和kafka。 我的程序永远运行着,我杀死了执行程序。
有人可以帮我吗?