Kafka - Message Delivery Semantics
Examine the following Kafka producer code snippet using transactions:
producer.initTransactions(); producer.beginTransaction(); producer.send(record); producer.abortTransaction(); producer.close();What is the effect of calling
abortTransaction() here?