Kafka - Performance Tuning
You want to optimize a Kafka consumer for high throughput but low latency. Which combination of settings is best?
max.poll.records allows processing many records per poll, increasing throughput.fetch.min.bytes means the consumer fetches data quickly without waiting for large batches, reducing latency.max.poll.records high (e.g., 1000) and fetch.min.bytes low (e.g., 1) -> Option C15+ quiz questions · All difficulty levels · Free
Free Signup - Practice All Questions