As of spring boot 2.3 it is possible to use customizers to configure some of boot's autoconfigured kafka client beans https://docs.spring.io/spring-boot/docs/current/api/org/springframework/boot/autoconfigure/kafka/DefaultKafkaConsumerFactoryCustomizer.html https://docs.spring.io/spring-boot/docs/current/api/org/springframework/boot/autoconfigure/kafka/DefaultKafkaProducerFactoryCustomizer.html https://docs.spring.io/spring-boot/docs/current/api/org/springframework/boot/autoconfigure/kafka/StreamsBuilderFactoryBeanCustomizer.html The problem is that the consumer customizer has limited utility since its currently impossible to modify the config in the consumer factory. Is it possible to add a way to modify the config? Similar to the updateConfigs method in the producer factory? https://docs.spring.io/spring-kafka/docs/current/api/org/springframework/kafka/core/ProducerFactory.html#updateConfigs(java.util.Map)