I'm trying to let Debezium start reading the binlog from the bottom of the file directly. Could someone help in this matter please ?
Asked
Active
Viewed 1,443 times
2 Answers
1
Based on the docs it looks like you can use snapshot.mode=schema_only
:
If you don’t need the topics to contain a consistent snapshot of the data but only need them to have the changes since the connector was started, you can use the
schema_only
option, where the connector only snapshots the schemas (not the data).

Robin Moffatt
- 30,382
- 3
- 65
- 92
0
If you want to ingest from the last position, you can drain the groups by doing this:
kafka-console-consumer.sh --bootstrap-server kafka:9092 --topic topicName --group groupName --from-beginning

Viraj Rathod
- 55
- 6