SendToDlqAndContinue needs to be excluded
In Kafka Streams binder, we need to exclude the SendToDlqAndContinue
BiFunction by adding it to the ineligible function definitions.
See this commit for more context: 8ec15fa3ca
This commit is contained in:
@@ -0,0 +1,46 @@
|
||||
/*
|
||||
* Copyright 2022-2022 the original author or authors.
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||
* you may not use this file except in compliance with the License.
|
||||
* You may obtain a copy of the License at
|
||||
*
|
||||
* https://www.apache.org/licenses/LICENSE-2.0
|
||||
*
|
||||
* Unless required by applicable law or agreed to in writing, software
|
||||
* distributed under the License is distributed on an "AS IS" BASIS,
|
||||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
* See the License for the specific language governing permissions and
|
||||
* limitations under the License.
|
||||
*/
|
||||
|
||||
package org.springframework.cloud.stream.binder.kafka.streams;
|
||||
|
||||
import java.util.HashMap;
|
||||
import java.util.Map;
|
||||
|
||||
import org.springframework.boot.SpringApplication;
|
||||
import org.springframework.boot.env.EnvironmentPostProcessor;
|
||||
import org.springframework.core.env.ConfigurableEnvironment;
|
||||
import org.springframework.core.env.MapPropertySource;
|
||||
|
||||
/**
|
||||
* {@link EnvironmentPostProcessor} to exclude the SendToDlqAndContinue BiFunction
|
||||
* in core Spring Cloud Function by adding it to the ineligible function definitions.
|
||||
*
|
||||
* @author Soby Chacko
|
||||
*/
|
||||
public class KafkaStreamsBinderEnvironmentPostProcessor implements EnvironmentPostProcessor {
|
||||
|
||||
@Override
|
||||
public void postProcessEnvironment(ConfigurableEnvironment environment,
|
||||
SpringApplication application) {
|
||||
Map<String, Object> kafkaStreamsBinderIneligibleDefns = new HashMap<>();
|
||||
kafkaStreamsBinderIneligibleDefns.put("spring.cloud.function.ineligible-definitions",
|
||||
"sendToDlqAndContinue");
|
||||
|
||||
environment.getPropertySources().addLast(new MapPropertySource(
|
||||
"KAFKA_STREAMS_BINDER_INELIGIBLE_DEFINITIONS", kafkaStreamsBinderIneligibleDefns));
|
||||
}
|
||||
|
||||
}
|
||||
@@ -3,3 +3,5 @@ org.springframework.boot.autoconfigure.EnableAutoConfiguration=\
|
||||
org.springframework.cloud.stream.binder.kafka.streams.KafkaStreamsBinderSupportAutoConfiguration,\
|
||||
org.springframework.cloud.stream.binder.kafka.streams.function.KafkaStreamsFunctionAutoConfiguration,\
|
||||
org.springframework.cloud.stream.binder.kafka.streams.endpoint.KafkaStreamsTopologyEndpointAutoConfiguration
|
||||
org.springframework.boot.env.EnvironmentPostProcessor=\
|
||||
org.springframework.cloud.stream.binder.kafka.streams.KafkaStreamsBinderEnvironmentPostProcessor
|
||||
|
||||
@@ -32,6 +32,7 @@ class ExtendedBindingHandlerMappingsProviderAutoConfigurationTests {
|
||||
private final ApplicationContextRunner contextRunner = new ApplicationContextRunner()
|
||||
.withUserConfiguration(KafkaStreamsTestApp.class)
|
||||
.withPropertyValues(
|
||||
"spring.cloud.function.ineligible-definitions: sendToDlqAndContinue",
|
||||
"spring.cloud.stream.kafka.streams.default.consumer.application-id: testApp123",
|
||||
"spring.cloud.stream.kafka.streams.default.consumer.consumed-as: default-consumer",
|
||||
"spring.cloud.stream.kafka.streams.default.consumer.materialized-as: default-materializer",
|
||||
|
||||
@@ -74,6 +74,7 @@ class SerdeResolverUtilsTests {
|
||||
void returnsSerdeBeanForMatchingType() {
|
||||
this.contextRunner
|
||||
.withConfiguration(AutoConfigurations.of(SerdeResolverSimpleTestApp.class))
|
||||
.withPropertyValues("spring.cloud.function.ineligible-definitions: sendToDlqAndContinue")
|
||||
.run((context) -> {
|
||||
ResolvableType fooType = ResolvableType.forClass(Foo.class);
|
||||
assertThat(SerdeResolverUtils.resolveForType(context, fooType, fallback)).isInstanceOf(FooSerde.class);
|
||||
@@ -214,7 +215,9 @@ class SerdeResolverUtilsTests {
|
||||
ResolvableType geWildcard = ResolvableType.forType(new ParameterizedTypeReference<GenericEvent<?>>() { });
|
||||
ResolvableType geRaw = ResolvableType.forRawClass(GenericEvent.class);
|
||||
|
||||
new ApplicationContextRunner().withUserConfiguration(SerdeResolverSimpleTestApp.class).run((context) -> {
|
||||
new ApplicationContextRunner().withUserConfiguration(SerdeResolverSimpleTestApp.class)
|
||||
.withPropertyValues("spring.cloud.function.ineligible-definitions: sendToDlqAndContinue")
|
||||
.run((context) -> {
|
||||
|
||||
assertThat(SerdeResolverUtils.beanNamesForMatchingSerdes(context, geDate))
|
||||
.containsExactly(
|
||||
@@ -284,7 +287,9 @@ class SerdeResolverUtilsTests {
|
||||
ResolvableType geWildcard = ResolvableType.forType(new ParameterizedTypeReference<GenericEvent<?>>() { });
|
||||
ResolvableType geRaw = ResolvableType.forRawClass(GenericEvent.class);
|
||||
|
||||
new ApplicationContextRunner().withUserConfiguration(SerdeResolverComplexTestApp.class).run((context) -> {
|
||||
new ApplicationContextRunner().withUserConfiguration(SerdeResolverComplexTestApp.class)
|
||||
.withPropertyValues("spring.cloud.function.ineligible-definitions: sendToDlqAndContinue")
|
||||
.run((context) -> {
|
||||
|
||||
assertThat(SerdeResolverUtils.beanNamesForMatchingSerdes(context, geFooDate))
|
||||
.containsExactly(
|
||||
|
||||
Reference in New Issue
Block a user