Relative Content

Tag Archive for apache-kafkaconfluent-kafka-dotnet

Consume FETCH ERROR when reading from topic

I have kafka cluster with 3 brokers inside kubernetes cluster. Empty topic with 1 partition created manualy via kafka ui app .NET consumer config (nuget package Confluent.Kafka Version=”2.5.1″) var config = new ConsumerConfig { BootstrapServers = _streamProviderOptions.BootstrapServers, GroupId = $”consumer-{_topicName}”, AutoOffsetReset = AutoOffsetReset.Earliest, EnableAutoCommit = false, EnablePartitionEof = true, ClientId = $”consumer-client-{_topicName}”, IsolationLevel = IsolationLevel.ReadCommitted […]