Kafka - Advanced Stream Processing
Given this Kafka Streams code snippet, what is the output if a failure occurs before commit?
streams.start();
try {
streams.process(record);
streams.commitTransaction();
} catch (Exception e) {
streams.abortTransaction();
}