Class DeadLetterPublishingRecovererFactory

    • Constructor Detail

      • DeadLetterPublishingRecovererFactory

        public DeadLetterPublishingRecovererFactory​(DestinationTopicResolver destinationTopicResolver)
    • Method Detail

      • setDeadLetterPublishingRecovererCustomizer

        public void setDeadLetterPublishingRecovererCustomizer​(java.util.function.Consumer<DeadLetterPublishingRecoverer> customizer)
      • resolveTopicPartition

        protected org.apache.kafka.common.TopicPartition resolveTopicPartition​(org.apache.kafka.clients.consumer.ConsumerRecord<?,​?> cr,
                                                                               DestinationTopic nextDestination)
        Creates and returns the TopicPartition, where the original record should be forwarded. By default, it will use the partition same as original record's partition, in the next destination topic.

        DeadLetterPublishingRecoverer.checkPartition(org.apache.kafka.common.TopicPartition, org.apache.kafka.clients.consumer.Consumer<?, ?>) has logic to check whether that partition exists, and if it doesn't it sets -1, to allow the Producer itself to assign a partition to the record.

        Subclasses can inherit from this method to override the implementation, if necessary.

        Parameters:
        cr - The original ConsumerRecord, which is to be forwarded to DLT
        nextDestination - The next DestinationTopic, where the consumerRecord is to be forwarded
        Returns:
        An instance of TopicPartition, specifying the topic and partition, where the cr is to be sent