Kafka - Performance Tuning
Given this Kafka producer configuration snippet:
What is the expected effect on producer throughput?
props.put("batch.size", 32768);
props.put("linger.ms", 50);
props.put("compression.type", "gzip");What is the expected effect on producer throughput?
