Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
338 views
in Technique[技术] by (71.8m points)

Is there any way to tweak consumer configurations in Kafka Connect?

I'm modifying memsql Kafka Connector code and it seems Kafka connect does not use Kafka consumer subscribe API so I'm wondering if there is any way to change configurations of consumer such as group id, partition assignment strategy,...?


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

It's possible to override consumer's configuration at the worker level:

consumer.auto.offset.reset=latest

or at the connector level:

"consumer.override.auto.offset.reset": "latest"

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...