Last active
March 13, 2022 10:06
-
-
Save nehanarkhede/6dd6f482c2091f36d2d55bd027ca6fc0 to your computer and use it in GitHub Desktop.
Exactly-once guarantees and transactions in Apache Kafka
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
producer.initTransactions(); | |
try { | |
producer.beginTransaction(); | |
producer.send(record1); | |
producer.send(record2); | |
producer.commitTransaction(); | |
} catch(ProducerFencedException e) { | |
producer.close(); | |
} catch(KafkaException e) { | |
producer.abortTransaction(); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment