猿问

如何让Kafka消费者从特定主题分区读取Spring Boot

我对 Kafka 和 Spring Boot 有点陌生,并试图让我的应用程序从主题的特定分区读取数据。


 @KafkaListener(id = "singleLnr", groupId = "${kafka.consumer.group.id}",containerFactory = "singleFactory", topicPartitions = @TopicPartition(topic = "${kafka.topic.singleAttendance}", partitions = {"0"}))

public void consume2(ConsumerRecord attendanceInfo) {

    System.out.println(attendanceInfo);

}

单一工厂代码


@Bean(name = "singleFactory")

public KafkaListenerContainerFactory singleFactory() {

    ConcurrentKafkaListenerContainerFactory<String, Map<String, String>> factory = new ConcurrentKafkaListenerContainerFactory<>();

    factory.setConsumerFactory(consumerFactory());

    factory.setBatchListener(false);

    factory.setMessageConverter(converter());

    return factory;

}

这也是我的消费者工厂配置


 @Bean(name = "consumerFactory")

public ConsumerFactory<String, Map<String, String>> consumerFactory() {

    Map<String, Object> props = new HashMap<>();

    props.put(ConsumerConfig.BOOTSTRAP_SERVERS_CONFIG, kafkaBootstrapAddress);

    props.put(ConsumerConfig.ENABLE_AUTO_COMMIT_CONFIG, true);

    props.put(ConsumerConfig.AUTO_COMMIT_INTERVAL_MS_CONFIG, 1000);

    props.put(ConsumerConfig.SESSION_TIMEOUT_MS_CONFIG, 60000);

    props.put(ConsumerConfig.KEY_DESERIALIZER_CLASS_CONFIG, StringDeserializer.class);

    props.put(ConsumerConfig.VALUE_DESERIALIZER_CLASS_CONFIG, StringDeserializer.class);

    props.put(ConsumerConfig.GROUP_ID_CONFIG, kafkaConsumerGroupId);

    return new DefaultKafkaConsumerFactory<>(props);

}

当我尝试运行该程序时,它给了我一个错误


分区 single.attendance-0 偏移量 308 处的偏移量提交失败:协调器不知道此成员。


和警告


失败:提交无法完成,因为组已经重新平衡并将分区分配给另一个成员。这意味着后续调用 poll() 之间的时间比配置的 max.poll.interval.ms 长,这通常意味着 poll 循环花费了太多时间处理消息。您可以通过增加 max.poll.interval.ms 或通过使用 max.poll.records 减少 poll() 中返回的批次的最大大小来解决此问题。


如何让我的消费者从特定分区读取数据?您能至少给一个提示吗?


饮歌长啸
浏览 99回答 1
1回答

开心每一天1111

Kafka 为每个分区单独分配消费者。本实现中无需在@KafkaListener中进行配置。@KafkaListener(id&nbsp;=&nbsp;"singleLnr",&nbsp;groupId&nbsp;=&nbsp;"${kafka.consumer.group.id}",containerFactory&nbsp;=&nbsp;"singleFactory",&nbsp;topics&nbsp;=&nbsp;"${kafka.topic.singleAttendance}") &nbsp;&nbsp;&nbsp;&nbsp;public&nbsp;void&nbsp;consume2(ConsumerRecord&nbsp;attendanceInfo)&nbsp;{ &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;System.out.println(attendanceInfo); &nbsp;&nbsp;&nbsp;&nbsp;}
随时随地看视频慕课网APP

相关分类

Java
我要回答