Kafka - Performance Tuning
Given this Kafka producer config snippet:
What is the expected effect on message sending?
props.put("batch.size", 16384);
props.put("linger.ms", 5);
props.put("acks", "all");What is the expected effect on message sending?
