Hi Mukesh -
This isn't Debezium specific, but instead has to do with how the
sink connector is configured to read from the topic using Kafka
Connect's configuration option, "auto.offset.reset". When this is
set to "earliest", it will read from the beginning of the topic,
capturing all changes that currently exist in the topic. If this
is set to "latest", then it will only begin to consume new events
after the connector's creation. Is it possible you've set this to
"latest" rather than "earliest"?
Thanks,
-cc