Kafka - Producers
Given the following Kafka producer code snippet:
What happens if the leader broker crashes before replicating the message?
props.put("acks", "1");
producer.send(record);What happens if the leader broker crashes before replicating the message?
