当kafka关闭时发送消息时不会出现异常

时间:2019-02-01 07:06:49

标签: java apache-kafka kafka-producer-api

我遇到的情况是卡夫卡随机下车。当我向kafka发送消息时,我想分别处理它。但是当我在故障发生时向kafka发送消息时,没有异常发生,因此我无法确定kafka是否故障。有什么办法可以捕获异常和丢失的消息。

我有一个非常基本的代码

public static void main(String[] args) {
    String topicName = "test-1";

    Properties props = new Properties();
    props.put("bootstrap.servers", "localhost:9092");
    props.put("acks", "all");
    props.put("retries", 0);
    props.put("batch.size", 16384);
    props.put("linger.ms", 1);
    props.put("buffer.memory", 33554432);
    props.put("key.serializer", "org.apache.kafka.common.serialization.StringSerializer");
    props.put("value.serializer", "org.apache.kafka.common.serialization.StringSerializer");

    Producer<String, String> producer = new KafkaProducer<>(props);

    for (int i = 0; i < 10; i++) {
        producer.send(new ProducerRecord<>(topicName, Integer.toString(i), Integer.toString(i)));
    }
    System.out.println("Message sent successfully");
    producer.close();
}

1 个答案:

答案 0 :(得分:1)

您需要发送一个同步呼叫才能从Kafka处获得响应。

for (int i = 0; i < 10; i++) {
    ProducerRecord<String, String> record = 
              new ProducerRecord<>(topicName, Integer.toString(i), Integer.toString(i));
    try {
           producer.send(record).get();
    } catch (Exception e) {
           e.printStackTrace();
           // Handle message that has failed
    }
}

方法.get()将返回来自Kafka的响应。当记录未能推送到Kafka时,它将引发异常。成功发送记录后,将返回RecordMetadata