您的位置:首页 > 科技 > IT业 > python连接kafka生产者发送消息

python连接kafka生产者发送消息

2024/11/17 12:23:23 来源:https://blog.csdn.net/weixin_45531218/article/details/140358128  浏览:    关键词:python连接kafka生产者发送消息

通过pip install kafka-python安装第三方工具
再导入相应的方法就可以连接kafka进行消息发送了。

from kafka import KafkaProducer, KafkaConsumer
import jsonproducer = KafkaProducer(bootstrap_servers=['xxx.xxx.xxx.xxx:9092','xxx.xxx.xxx.xxx:9092'],security_protocol='SASL_PLAINTEXT',sasl_mechanism='SCRAM-SHA-512',sasl_plain_username = '鉴权账户',sasl_plain_password = '鉴权password',value_serializer = lambda m: json.dumps(m).encode('ascii'))
message = {"test":"test"}
producer.send('topicname', value = message)
producer.flush()

同时发送msg和key时,有时会报错key_bytes不属于字节类型,于是就手动把json内容改成字节型,再发送

from kafka import KafkaProducer, KafkaConsumer
import jsonproducer = KafkaProducer(bootstrap_servers=['xxx.xxx.xxx.xxx:9092','xxx.xxx.xxx.xxx:9092'],security_protocol='SASL_PLAINTEXT',sasl_mechanism='SCRAM-SHA-512',sasl_plain_username = '鉴权账户',sasl_plain_password = '鉴权password')
message = {"test":"test"}
k = {"test":"test"}msg_bytes =  json.dumps(message).encode('ascii')
k_bytes = json.dumps(k).encode('ascii')producer.send('topicname', key = k_bytes, value = msg_bytes)
producer.flush()

遇到过send发送消息超过60000ms的错误,这个问题需要加上鉴权,并且确认topic是正确的。我是加了鉴权,即用账户和密码,并且改正了topic之后,就发送成功了。

版权声明:

本网仅为发布的内容提供存储空间,不对发表、转载的内容提供任何形式的保证。凡本网注明“来源:XXX网络”的作品,均转载自其它媒体,著作权归作者所有,商业转载请联系作者获得授权,非商业转载请注明出处。

我们尊重并感谢每一位作者,均已注明文章来源和作者。如因作品内容、版权或其它问题,请及时与我们联系,联系邮箱:809451989@qq.com,投稿邮箱:809451989@qq.com