codependent
codependent

Reputation: 24452

Is Kafka Connect JDBC Source connector idempotent?

Reading the documentation of this connector there isn't a mention about this characteristic.

So, does this connector guarantee that it won't produce duplicated records under broker crashes or whatever could happen?

Do we have to configure something to get indempotence the same way we would do with any other Kafka Producer (enable.idempotence: true)?

Upvotes: 3

Views: 1049

Answers (1)

Giorgos Myrianthous
Giorgos Myrianthous

Reputation: 39810

Kafka Connect JDBC source connector, is not idempotent at the moment. Here's the relevant KIP-318 and JIRA ticket.

Upvotes: 1

Related Questions