无法连接到kafka群集时无异常

zvokhttg  于 2021-06-04  发布在  Kafka
关注(0)|答案(1)|浏览(442)

当程序无法连接到kafka群集时,我无法获得异常。代码在控制台日志中输出异常,但我需要它抛出异常。我正在使用这个c#库:https://github.com/confluentinc/confluent-kafka-dotnet

ProducerConfig _configKafka = new ProducerConfig { BootstrapServers ="localhost:9092/" };

ProducerBuilder<string, string> _kafkaProducer = new ProducerBuilder<string, string>(_configKafka);
using (var kafkaProducer = _kafkaProducer.Build())
{

    try
    {
        var dr = kafkaProducer.ProduceAsync("Kafka_Messages", new Message<string, string> { Key = null, Value = $"message {i++}" });
        dr.Wait(TimeSpan.FromSeconds(10));

        if(dr.Exception!=null)
        {
            Console.WriteLine($"Delivery failed:");
        }

        var status = dr.Status;

        //Console.WriteLine($"Delivered '{dr.Value}' to '{dr.TopicPartitionOffset}'");
    }

    catch (ProduceException<Null, string> e)
    {
        Console.WriteLine($"Delivery failed: {e.Error.Reason}");
    }
}

下面是confluent kafka在控制台中打印的错误:

%3|1565248275.024|FAIL|rdkafka#producer-1| [thrd:localhst:9092/bootstrap]: localhst:9092/bootstrap: Failed to resolve 'localhst:9092': No such host is known.  (after 2269ms in state CONNECT)
%3|1565248275.024|ERROR|rdkafka#producer-1| [thrd:localhst:9092/bootstrap]: localhst:9092/bootstrap: Failed to resolve 'localhst:9092': No such host is known.  (after 2269ms in state CONNECT)
%3|1565248275.025|ERROR|rdkafka#producer-1| [thrd:localhst:9092/bootstrap]: 1/1 brokers are down
kd3sttzy

kd3sttzy1#

要获得应用程序中的实际异常,需要添加 .SetErrorHandler() :

ProducerBuilder<string, string> _kafkaProducer = new ProducerBuilder<string, string>(_configKafka);

    using (var kafkaProducer = _kafkaProducer.SetErrorHandler((producer, error) =>
                        {
                           //You can handle error right here

                        }).Build())

error.reason包含错误消息

相关问题