我是新卡夫卡,弹力靴,并试图整合卡夫卡和弹性搜索在我的弹力启动应用程序。
当我尝试运行springboot应用程序时,我会看到下面的错误:
org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'kafkaListenerContainerFactory' defined in class path resource [org/springframework/boot/autoconfigure/kafka/KafkaAnnotationDrivenConfi
我想使用kafka和springboot实时地从文件中发送数据,我已经测试了这个代码,用postman以JSON格式将数据发送到kafka主题。
@RestController
public class OrderController {
@Autowired
private KafkaProducerService kafkaProducerService;
@PostMapping("/post")
public void order(@RequestBody Order order) {
kafkaProduce
我目前正在创建一个Springboot应用程序,它将使用Kafka主题的消息,处理后将写回另一个主题。我用骆驼来整合。
My Route looks like this :
onException(IllegalArgumentException.class).maximumRedeliveries(4);
from("kafka:CDC-GEXPUAT-CUSTOMER")
.id("CamelRouteCustomer_1")
.**transacted**()
我有一个简单的springboot引导应用程序运行在码头容器与以下配置。
@Configuration
public class ProducerConfiguration {
private static final String KAFKA_BROKER = "kafka:9092";
@Bean
public ProducerFactory<String, String> producerFactory() {
return new DefaultKafkaProducerFactory<>(produc
我有一个springboot引导应用程序,我想通过JMX向Prometheus公开kafka.consumer指标。我可以看到度量标准,但我不知道在哪里设置这些mBeans(即kafka.customer:type= see mBeans,client-id=(-.\w+))。我了解到,只需要通过这个设置来激活JMX,但我不知道通过JMX向Prometheus公开这些指标需要做些什么。
我正在学习如何使用TestContainers测试Spring Boot Kafka应用程序。测试通过。然而,在一开始就有很多这样的消息: 2021-04-05 09:00:13.927 WARN 1864 --- [| adminclient-1] org.apache.kafka.clients.NetworkClient : [AdminClient clientId=adminclient-1] Connection to node -1 (localhost/127.0.0.1:9092) could not be established. Broker may not be