Hi@akhtar,
To fix the pipeline, you need to resolve the issue with the message on the source topic. Kafka Connect will not simply “skip” the bad message unless we tell it to do.
The default behavior of Kafka Connect.
errors.tolerance = none
But it can be set explicitly with the following.
errors.tolerance = all
Now try again, it will work.
Thank You