Files
eagle/examples/queue/kafka/config/kafka.yaml
Richard fb1b10bcf5 chore: improve kafka component (#180)
* feat: improve kafka component

* chore: revert test password

* docs: add changelog

* chore: upgrade sarama to IBM/sarama
2025-04-12 17:33:05 +08:00

23 lines
430 B
YAML

default: # 实例名称
Version: "2.8.1"
RequiredAcks: 1
Topic: "test-topic"
ConsumeTopic:
- "test-topic1"
- "test-topic2"
Brokers:
- "localhost:9092"
GroupID: "test-group"
Partitioner: "hash"
order: # 另一个实例配置
Version: "2.8.1"
RequiredAcks: 1
Topic: "order-topic"
ConsumeTopic:
- "order-topic"
Brokers:
- "localhost:9092"
GroupID: "order-group"
Partitioner: "random"