yml 配置文件添加
spring:
#允许重写方法,kafka必要注解
kafka:
bootstrap-servers: 10.xx.67.10:9092
consumer:
#判断是队列模式还是发布订阅模式
group-id: force
#producer将试图批处理消息记录,以减少请求次数。
batch-size: 16384
retries: 0
buffer-memory: 33554432
enable-auto-commit: true
auto-commit-interval: 1000
#latest:自动复位offset为最新
auto-offset-reset: latest
concurrency: 3
key-serializer: org.apache.kafka.common.serialization.StringSerializer
value-serializer: org.apache.kafka.common.serialization.ByteArraySerializer
#一个用于跟踪调查的ID ,最好同group.id相同
client-id: force
#用于链接带密码的kafka 配置,如果kafka没有密码需要注释掉
properties:
sasl.mechanism: PLAIN
security.protocol: SASL_PLAINTEXT
sasl.jaas.config: org.apache.kafka.common.security.plain.PlainLoginModule required username="mooc" password="moocpswd";
**粗体** _斜体_ [链接](http://example.com) `代码` - 列表 > 引用
。你还可以使用@
来通知其他用户。