DLT 策略

该框架提供了一些用于处理 DLT 的策略。您可以提供一种 DLT 处理方法,使用默认的日志记录方法,或者根本不使用 DLT。此外,您还可以选择如果 DLT 处理失败会发生什么。

DLT 处理方法

您可以指定用于处理主题的 DLT 的方法,以及如果该处理失败的行为。

为此,您可以在带有 @RetryableTopic 注解的类的某个方法中使用 @DltHandler 注解。请注意,同一方法将用于该类中所有带 @RetryableTopic 注解的方法。

@RetryableTopic
@KafkaListener(topics = "my-annotated-topic")
public void processMessage(MyPojo message) {
    // ... message processing
}

@DltHandler
public void processMessage(MyPojo message) {
    // ... message processing, persistence, etc
}

DLT 处理程序方法也可以通过 RetryTopicConfigurationBuilder.dltHandlerMethod(String, String) 方法提供,将 bean 名称和方法名称作为参数传递,这些名称应处理 DLT 的消息。

@Bean
public RetryTopicConfiguration myRetryTopic(KafkaTemplate<Integer, MyPojo> template) {
    return RetryTopicConfigurationBuilder
            .newInstance()
            .dltHandlerMethod("myCustomDltProcessor", "processDltMessage")
            .create(template);
}

@Component
public class MyCustomDltProcessor {

    private final MyDependency myDependency;

    public MyCustomDltProcessor(MyDependency myDependency) {
        this.myDependency = myDependency;
    }

    public void processDltMessage(MyPojo message) {
        // ... message processing, persistence, etc
    }
}
如果未提供 DLT 处理程序,则使用默认的 RetryTopicConfigurer.LoggingDltListenerHandlerMethod

从版本 2.8 开始,如果您根本不想从此应用程序中的 DLT 中使用,包括默认处理程序(或者您希望延迟使用),则可以控制 DLT 容器是否启动,而与容器工厂的 autoStartup 属性无关。

使用 @RetryableTopic 注解时,将 autoStartDltHandler 属性设置为 false;使用配置构建器时,使用 autoStartDltHandler(false)

您可以稍后通过 KafkaListenerEndpointRegistry 启动 DLT 处理程序。

DLT 失败行为

如果 DLT 处理失败,则可以使用两种可能的行为:ALWAYS_RETRY_ON_ERRORFAIL_ON_ERROR

在前者中,记录会被转发回 DLT 主题,因此它不会阻止其他 DLT 记录的处理。在后者中,消费者在不转发消息的情况下结束执行。

@RetryableTopic(dltProcessingFailureStrategy =
            DltStrategy.FAIL_ON_ERROR)
@KafkaListener(topics = "my-annotated-topic")
public void processMessage(MyPojo message) {
    // ... message processing
}
@Bean
public RetryTopicConfiguration myRetryTopic(KafkaTemplate<Integer, MyPojo> template) {
    return RetryTopicConfigurationBuilder
            .newInstance()
            .dltHandlerMethod("myCustomDltProcessor", "processDltMessage")
            .doNotRetryOnDltFailure()
            .create(template);
}
默认行为是 ALWAYS_RETRY_ON_ERROR
从版本 2.8.3 开始,如果记录导致抛出致命异常(例如 DeserializationException),则 ALWAYS_RETRY_ON_ERROR 不会将记录路由回 DLT,因为通常情况下,此类异常总是会被抛出。

被视为致命的异常是

  • DeserializationException

  • MessageConversionException

  • ConversionException

  • MethodArgumentResolutionException

  • NoSuchMethodException

  • ClassCastException

您可以使用 DestinationTopicResolver bean 上的方法向此列表添加异常并从中删除异常。

有关更多信息,请参阅异常分类器

配置无 DLT

该框架还提供了不为主题配置 DLT 的可能性。在这种情况下,在重试耗尽后,处理将简单地结束。

@RetryableTopic(dltProcessingFailureStrategy =
            DltStrategy.NO_DLT)
@KafkaListener(topics = "my-annotated-topic")
public void processMessage(MyPojo message) {
    // ... message processing
}
@Bean
public RetryTopicConfiguration myRetryTopic(KafkaTemplate<Integer, MyPojo> template) {
    return RetryTopicConfigurationBuilder
            .newInstance()
            .doNotConfigureDlt()
            .create(template);
}