Reputation: 2569
Need the debezium to read from a specific position in the bin log. Is it possible? If yes, how can it be specified?
Debezium snapshot modes are: initial, when_needed, never. We want to keep the snapshot mode to never and start reading from the specified bin log position.
Upvotes: 1
Views: 1206
Reputation: 1976
you can hack it witha source offset manipulation, see https://debezium.io/documentation/faq/#how_to_change_the_offsets_of_the_source_database
Upvotes: 1