对于最新的稳定版本,请使用 Spring for Apache Kafka 3.3.0spring-doc.cn

主题命名

重试主题和 DLT 的命名方式是在主主题后加上提供的或默认值,并附加该主题的延迟或索引。spring-doc.cn

例子:spring-doc.cn

“my-topic” → “my-topic-retry-0”, “my-topic-retry-1”, ..., “my-topic-dlt”spring-doc.cn

“my-other-topic” → “my-topic-myRetrySuffix-1000”, “my-topic-myRetrySuffix-2000”, ..., “my-topic-myDltSuffix”spring-doc.cn

默认行为是为每次尝试创建单独的重试主题,并附加索引值:retry-0、retry-1、...、retry-n。 因此,默认情况下,重试主题的数量为配置的减 1。maxAttempts

重试主题和 DLT 后缀

您可以指定重试和 DLT 主题将使用的后缀。spring-doc.cn

@RetryableTopic(retryTopicSuffix = "-my-retry-suffix", dltTopicSuffix = "-my-dlt-suffix")
@KafkaListener(topics = "my-annotated-topic")
public void processMessage(MyPojo message) {
    // ... message processing
}
@Bean
public RetryTopicConfiguration myRetryTopic(KafkaTemplate<String, MyOtherPojo> template) {
    return RetryTopicConfigurationBuilder
            .newInstance()
            .retryTopicSuffix("-my-retry-suffix")
            .dltTopicSuffix("-my-dlt-suffix")
            .create(template);
}
默认后缀为 “-retry” 和 “-dlt”,分别用于重试主题和 dlt。

附加主题的索引或延迟

您可以在后缀后附加主题的索引或 delay 值。spring-doc.cn

@RetryableTopic(topicSuffixingStrategy = TopicSuffixingStrategy.SUFFIX_WITH_INDEX_VALUE)
@KafkaListener(topics = "my-annotated-topic")
public void processMessage(MyPojo message) {
    // ... message processing
}
@Bean
public RetryTopicConfiguration myRetryTopic(KafkaTemplate<String, MyPojo> template) {
    return RetryTopicConfigurationBuilder
            .newInstance()
            .suffixTopicsWithIndexValues()
            .create(template);
    }
默认行为是使用延迟值作为后缀,但具有多个主题的固定延迟配置除外,在这种情况下,主题以主题的索引为后缀。

固定延迟重试的单个主题

如果您使用的是固定延迟策略,例如 or,则可以使用单个主题来完成非阻塞重试。 本主题将以 provided 或 default 后缀为后缀,并且不会附加 index 或 delay 值。FixedBackOffPolicyNoBackOffPolicyspring-doc.cn

前者现已弃用,可替换为 。FixedDelayStrategySameIntervalTopicReuseStrategy
@RetryableTopic(backoff = @Backoff(2_000), fixedDelayTopicStrategy = FixedDelayStrategy.SINGLE_TOPIC)
@KafkaListener(topics = "my-annotated-topic")
public void processMessage(MyPojo message) {
    // ... message processing
}
@Bean
public RetryTopicConfiguration myRetryTopic(KafkaTemplate<String, MyPojo> template) {
    return RetryTopicConfigurationBuilder
            .newInstance()
            .fixedBackoff(3_000)
            .maxAttempts(5)
            .useSingleTopicForFixedDelays()
            .create(template);
}
默认行为是为每次尝试创建单独的重试主题,并附加其索引值:retry-0、retry-1、...

maxInterval Exponential Delay 的单个主题

如果您使用的是指数回退策略 (),则可以使用单个重试主题来完成其延迟为配置的尝试的非阻塞重试。ExponentialBackOffPolicymaxIntervalspring-doc.cn

此“最终”重试主题将以 provided 或 default 后缀为后缀,并将附加索引或值。maxIntervalspring-doc.cn

通过选择使用单个主题进行延迟重试,配置长时间持续重试的指数重试策略可能变得更加可行,因为在这种方法中,您不需要大量主题。maxInterval

默认行为是处理等于配置的减 1 的重试主题数,当使用指数回退时,重试主题以延迟值为后缀,最后一个重试主题(对应于延迟)以附加索引为后缀。maxAttemptsmaxIntervalspring-doc.cn

例如,当使用 、 和 配置指数回退时,为了继续尝试一小时,需要配置为 229,默认情况下,所需的重试主题为:initialInterval=1_000multiplier=2maxInterval=16_000maxAttemptsspring-doc.cn

当使用在相同间隔内重复使用重试主题的策略时,在上面的相同配置中,所需的重试主题为:spring-doc.cn

这将是未来发行版中的默认值。spring-doc.cn

@RetryableTopic(attempts = 230,
    backoff = @Backoff(delay = 1_000, multiplier = 2, maxDelay = 16_000),
    sameIntervalTopicReuseStrategy = SameIntervalTopicReuseStrategy.SINGLE_TOPIC)
@KafkaListener(topics = "my-annotated-topic")
public void processMessage(MyPojo message) {
    // ... message processing
}
@Bean
public RetryTopicConfiguration myRetryTopic(KafkaTemplate<String, MyPojo> template) {
    return RetryTopicConfigurationBuilder
            .newInstance()
            .exponentialBackoff(1_000, 2, 16_000)
            .maxAttempts(230)
            .useSingleTopicForSameIntervals()
            .create(template);
}

自定义命名策略

更复杂的命名策略可以通过注册实现 . 默认实现是,可以通过以下方式注册不同的实现:RetryTopicNamesProviderFactorySuffixingRetryTopicNamesProviderFactoryspring-doc.cn

@Override
protected RetryTopicComponentFactory createComponentFactory() {
    return new RetryTopicComponentFactory() {
        @Override
        public RetryTopicNamesProviderFactory retryTopicNamesProviderFactory() {
            return new CustomRetryTopicNamesProviderFactory();
        }
    };
}

例如,除了标准后缀之外,以下实现还为 retry/dlt 主题名称添加了前缀:spring-doc.cn

public class CustomRetryTopicNamesProviderFactory implements RetryTopicNamesProviderFactory {

    @Override
    public RetryTopicNamesProvider createRetryTopicNamesProvider(
                DestinationTopic.Properties properties) {

        if (properties.isMainEndpoint()) {
            return new SuffixingRetryTopicNamesProvider(properties);
        }
        else {
            return new SuffixingRetryTopicNamesProvider(properties) {

                @Override
                public String getTopicName(String topic) {
                    return "my-prefix-" + super.getTopicName(topic);
                }

            };
        }
    }

}