spring-kafka - 如何从头开始阅读一个主题,同时从头开始阅读另一个主题?

Eug*_*erg 1 spring-boot spring-kafka

我正在写一个spring-kafka应用程序,我需要阅读2个主题:test1和test2:

public class Receiver {

    private static final Logger LOGGER = LoggerFactory
            .getLogger(Receiver.class);

    @KafkaListener(id = "bar", topicPartitions =
{ @TopicPartition(topic = "test1", partitions = { "0" }),
  @TopicPartition(topic = "test2", partitions = { "0" })})
    public void receiveMessage(String message) {
        LOGGER.info("received message='{}'", message);
    }
}
Run Code Online (Sandbox Code Playgroud)

我的配置如下所示:

@Configuration
@EnableKafka
public class ReceiverConfig {

    @Value("${kafka.bootstrap.servers}")
    private String bootstrapServers;

    @Bean
    public Map<String, Object> consumerConfigs() {
        Map<String, Object> props = new HashMap<>();
        // list of host:port pairs used for establishing the initial connections
        // to the Kakfa cluster
        props.put(ConsumerConfig.BOOTSTRAP_SERVERS_CONFIG,
                bootstrapServers);
        props.put(ConsumerConfig.KEY_DESERIALIZER_CLASS_CONFIG,
                IntegerDeserializer.class);
        props.put(ConsumerConfig.VALUE_DESERIALIZER_CLASS_CONFIG,
                StringDeserializer.class);
        // consumer groups allow a pool of processes to divide the work of
        // consuming and processing records
        props.put(ConsumerConfig.GROUP_ID_CONFIG, "test1");
        props.put(ConsumerConfig.GROUP_ID_CONFIG, "test2");

        return props;
    }

    @Bean
    public ConsumerFactory<Integer, String> consumerFactory() {
        return new DefaultKafkaConsumerFactory<>(consumerConfigs());
    }

    @Bean
    public ConcurrentKafkaListenerContainerFactory<Integer, String> kafkaListenerContainerFactory() {
        ConcurrentKafkaListenerContainerFactory<Integer, String> factory = new ConcurrentKafkaListenerContainerFactory<>();
        factory.setConsumerFactory(consumerFactory());

        return factory;
    }

    @Bean
    public Receiver receiver() {
        return new Receiver();
    }
}
Run Code Online (Sandbox Code Playgroud)

我需要能够只读取"test1"中的最新消息,同时能够从"test2"的最开头读取所有消息.我只对应用程序启动时的"test2"消息感兴趣,但只要应用程序正在运行,就需要连续读取"test1"消息.

有没有办法配置这样的功能?

kon*_*nse 8

我也在这个问题上苦苦挣扎,并想提出一个更笼统的解决方案。

解决方案运行时,您需要对分区进行硬编码。您可能还拥有使用@KafkaListener-annotation实现ConsumerSeekAware接口的类。

这为您提供了三种可用于查找特定偏移量的方法。分配分区后,将立即调用一种方法。所以看起来可能像这样。

@Override
public void onPartitionsAssigned(Map<TopicPartition, Long> assignments, ConsumerSeekCallback callback) {
    assignments.keySet().stream()
        .filter(partition -> "MYTOPIC".equals(partition.topic()))
        .forEach(partition -> callback.seekToBeginning("MYTOPIC", partition.partition()));
}
Run Code Online (Sandbox Code Playgroud)

这样,当您决定向该主题添加更多分区时,您无需触摸任何代码即可:)

希望这对某人有帮助。


Eug*_*erg 5

这是一种对我有用的方法:

@KafkaListener(id = "receiver-api",         
        topicPartitions =
        { @TopicPartition(topic = "schema.topic", 
                partitionOffsets = @PartitionOffset(partition = "0", initialOffset = "0")),
                @TopicPartition(topic = "data.topic", partitions = { "0" })})
    public void receiveMessage(String message) {
        try {
                JSONObject incomingJsonObject = new JSONObject(message); 
                if(!incomingJsonObject.isNull("data")){
                    handleSchemaMessage(incomingJsonObject);
                }

                else {
                    handleDataMessage(incomingJsonObject);
                }

        } catch (Exception e) {
            e.printStackTrace();
        }
Run Code Online (Sandbox Code Playgroud)

使用"partitionOffsets"注释 (import org.springframework.kafka.annotation.PartitionOffset;)

能够始终从头开始阅读特定主题,同时像往常一样"拖尾"其他主题是关键.