如何在spring集成中处理无法生成kafka的消息?
我没有看到'error-channel'是'int-kafka:outbound-channel-adapter'中的一个选项,想知道我应该在哪里添加错误通道信息,以便我的ErrorHandler可以“无法生成到卡夫卡“的错误类型。 (包括所有类型的故障,配置,网络等)
另外,inputToKafka是排队频道,我应该在哪里添加错误频道来处理潜在的队列完整错误?
<int:gateway id="myGateway"
service-interface="someGateway"
default-request-channel="transformChannel"
error-channel="errorChannel"
default-reply-channel="replyChannel"
async-executor="MyThreadPoolTaskExecutor"/>
<int:transformer id="transformer" input-channel="transformChannel" method="transform" output-channel="inputToKafka">
<bean class="Transformer"/>
</int:transformer>
<int-kafka:outbound-channel-adapter id="kafkaOutboundChannelAdapter"
kafka-template="template"
auto-startup="false"
channel="inputToKafka"
topic="foo"
message-key-expression="'bar'"
partition-id-expression="2">
<int:poller fixed-delay="200" time-unit="MILLISECONDS" receive-timeout="0"
task-executor="kafkaExecutor"/>
</int-kafka:outbound-channel-adapter>
<bean id="kafkaExecutor" class="org.springframework.scheduling.concurrent.ThreadPoolTaskExecutor">
....
</bean>
<bean id="template" class="org.springframework.kafka.core.KafkaTemplate">
<constructor-arg>
<bean class="org.springframework.kafka.core.DefaultKafkaProducerFactory">
<constructor-arg>
<map>
<entry key="bootstrap.servers" value="localhost:9092" />
...
</map>
</constructor-arg>
</bean>
</constructor-arg>
</bean>
<int:service-activator input-channel='errorChannel' output-channel="replyChannel" method='process'>
<bean class="ErrorHandler"/>
</int:service-activator>
修改
<property name="producerListener">
<bean id="producerListener" class="org.springframework.kafka.support.ProducerListenerAdapter"/>
</property>
答案 0 :(得分:1)
下游流程上的任何错误都将发送到您网关上的error-channel
。但是,由于默认情况下kafka是异步的,因此您不会以任何方式获得任何错误。您可以在出站适配器上设置sync=true
,如果出现问题,则会抛出异常。
但请记住,它会慢得多。
您可以通过向ProducerListener
添加KafkaTemplate
来获取异步例外。