Kafka - Performance Tuning
Given this consumer config snippet:
What is the maximum number of records the consumer can receive in one poll?
props.put("max.poll.records", "500");
props.put("fetch.max.bytes", "1048576");
props.put("fetch.min.bytes", "1");What is the maximum number of records the consumer can receive in one poll?
