Kafka - Performance Tuning
You have this Kafka producer config:
What is the main problem with this setup if you want high throughput and reliability?
props.put("batch.size", 32768);
props.put("linger.ms", 0);
props.put("acks", "0");What is the main problem with this setup if you want high throughput and reliability?
