Reputation: 5681
I am under the impression that in Kafka-Connect you can specify some parameters in the .properties files to turn on exactly-once semantics.
I have been unable to find these settings; but I have found other ways of achieving this like
https://github.com/koeninger/kafka-exactly-once/blob/master/blogpost.md
and even older,
https://cwiki.apache.org/confluence/display/KAFKA/FAQ
Is it possible to achieve exactly once semantics by changing settings in kafka connect?
Upvotes: 0
Views: 374
Reputation: 2313
Kafka Connect does not support exactly once semantics at the framework scope. There are individual connectors (for instance the HDFS Connector that Confluent provides) that provide exactly once semantics. However, it's not a framework level configuration at this time.
Upvotes: 2