I am using the confluent community edition for a simple setup consisting a rest client calling the Kafka rest proxy and then pushing that data into an oracle database using the
The sink cannot currently ignore bad records, but you can manually skip them, using the kafka-consumer-groups tool:
kafka-consumer-groups
kafka-consumer-groups \ --bootstrap-server kafka:29092 \ --group connect-sink_postgres_foo_00 \ --reset-offsets \ --topic foo \ --to-offset 2 \ --execute
For more info see here.