Kafka Connect:下沉何时发生?
假设我有一个名为 orders
的主题,它有两个消费者组,我想将其下沉到 MySQL 数据库。接收器连接器是否等待这两个消费者完成工作然后接收数据,或者它不关心并启动接收器?
Suppose I have a topic named orders
which has two consumer groups and I want to sink it to a MySQL database. Does sink connector waits for those two consumers to finish their job then sink the data or it doesn't care and starts the sink?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
Sink 连接器创建自己的消费者组。
消费者群体相互独立;无需等待。
Sink connectors create their own consumer group.
Consumer groups are independent of one another; there is no waiting.