Confluent.Kafka 2.15.1-rc1

Confluent's .NET Client for Apache Kafka®

Chat on Slack

confluent-kafka-dotnet is Confluent's .NET client for Apache Kafka and the Confluent Platform.

Features:

  • High performance - confluent-kafka-dotnet is a lightweight wrapper around librdkafka, a finely tuned C client.

  • Reliability - There are a lot of details to get right when writing an Apache Kafka client. We get them right in one place (librdkafka) and leverage this work across all of our clients (also confluent-kafka-python and confluent-kafka-go).

  • Supported - Commercial support is offered by Confluent.

  • Future proof - Confluent, founded by the original creator/co-creator of Kafka, is building a streaming platform with Apache Kafka at its core. It's high priority for us that client features keep pace with core Apache Kafka and components of the Confluent Platform.

confluent-kafka-dotnet is derived from Andreas Heider's rdkafka-dotnet. We're fans of his work and were very happy to have been able to leverage rdkafka-dotnet as the basis of this client. Thanks Andreas!

Referencing

confluent-kafka-dotnet is distributed via NuGet. We provide the following packages:

  • Confluent.Kafka [netstandard2.0, net462, net8.0, net10.0] - The core client library.
  • Confluent.Kafka.OAuthBearer.Aws [netstandard2.1, net462, net8.0, net10.0] - Optional AWS IAM-based OAUTHBEARER authentication for Confluent.Kafka.
  • Confluent.SchemaRegistry.Serdes.Avro [netstandard2.0, net462, net8.0, net10.0] - Provides a serializer and deserializer for working with Avro serialized data with Confluent Schema Registry integration.
  • Confluent.SchemaRegistry.Serdes.Protobuf [netstandard2.0, net462, net8.0, net10.0] - Provides a serializer and deserializer for working with Protobuf serialized data with Confluent Schema Registry integration.
  • Confluent.SchemaRegistry.Serdes.Json [netstandard2.0, net462, net8.0, net10.0] - Provides a serializer and deserializer for working with Json serialized data with Confluent Schema Registry integration.
  • Confluent.SchemaRegistry [netstandard2.0, net462, net8.0, net10.0] - Confluent Schema Registry client (a dependency of the Confluent.SchemaRegistry.Serdes packages).
  • Confluent.SchemaRegistry.Encryption [netstandard2.1, net462, net8.0, net10.0] - Confluent Schema Registry client-side field-level encryption client (a dependency of the other Confluent.SchemaRegistry.Encryption.* packages).
  • Confluent.SchemaRegistry.Encryption.Aws [netstandard2.1, net462, net8.0, net10.0] - Confluent Schema Registry client-side field-level encryption client for AWS KMS.
  • Confluent.SchemaRegistry.Encryption.Azure [netstandard2.1, net462, net8.0, net10.0] - Confluent Schema Registry client-side field-level encryption client for Azure Key Vault.
  • Confluent.SchemaRegistry.Encryption.Gcp [netstandard2.1, net462, net8.0, net10.0] - Confluent Schema Registry client-side field-level encryption client for Google Cloud KMS.
  • Confluent.SchemaRegistry.Encryption.HcVault [netstandard2.1, net462, net8.0, net10.0] - Confluent Schema Registry client-side field-level encryption client for Hashicorp Vault.
  • Confluent.SchemaRegistry.Rules [netstandard2.1, net462, net8.0, net10.0] - Confluent Schema Registry client-side support for data quality rules (via the Common Expression Language) and schema migration rules (via JSONata).

To install Confluent.Kafka from within Visual Studio, search for Confluent.Kafka in the NuGet Package Manager UI, or run the following command in the Package Manager Console:

Install-Package Confluent.Kafka -Version 2.15.0

To add a reference to a dotnet core project, execute the following at the command line:

dotnet add package -v 2.15.0 Confluent.Kafka

Note: Confluent.Kafka depends on the librdkafka.redist package which provides a number of different builds of librdkafka that are compatible with common platforms. If you are on one of these platforms this will all work seamlessly (and you don't need to explicitly reference librdkafka.redist). If you are on a different platform, you may need to build librdkafka manually (or acquire it via other means) and load it using the Library.Load method.

Branch builds

Nuget packages corresponding to commits to branches are produced as CI artifacts by Semaphore, with a version suffix of the form ci-<job-id>.

Usage

For a step-by-step guide and code samples, see Getting Started with Apache Kafka and .NET on Confluent Developer.

You can also take the free self-paced training course Apache Kafka for .NET Developers on Confluent Developer.

Take a look in the examples directory and at the integration tests for further examples.

For an overview of configuration properties, refer to the librdkafka documentation.

Basic Producer Examples

You should use the ProduceAsync method if you would like to wait for the result of your produce requests before proceeding. You might typically want to do this in highly concurrent scenarios, for example in the context of handling web requests. Behind the scenes, the client will manage optimizing communication with the Kafka brokers for you, batching requests as appropriate.

using System;
using System.Threading.Tasks;
using Confluent.Kafka;

class Program
{
    public static async Task Main(string[] args)
    {
        var config = new ProducerConfig { BootstrapServers = "localhost:9092" };

        // If serializers are not specified, default serializers from
        // `Confluent.Kafka.Serializers` will be automatically used where
        // available. Note: by default strings are encoded as UTF8.
        using (var p = new ProducerBuilder<Null, string>(config).Build())
        {
            try
            {
                var dr = await p.ProduceAsync("test-topic", new Message<Null, string> { Value = "test" });
                Console.WriteLine($"Delivered '{dr.Value}' to '{dr.TopicPartitionOffset}'");
            }
            catch (ProduceException<Null, string> e)
            {
                Console.WriteLine($"Delivery failed: {e.Error.Reason}");
            }
        }
    }
}

Note that a server round-trip is slow (3ms at a minimum; actual latency depends on many factors). In highly concurrent scenarios you will achieve high overall throughput out of the producer using the above approach, but there will be a delay on each await call. In stream processing applications, where you would like to process many messages in rapid succession, you would typically use the Produce method instead:

using System;
using Confluent.Kafka;

class Program
{
    public static void Main(string[] args)
    {
        var conf = new ProducerConfig { BootstrapServers = "localhost:9092" };

        Action<DeliveryReport<Null, string>> handler = r =>
            Console.WriteLine(!r.Error.IsError
                ? $"Delivered message to {r.TopicPartitionOffset}"
                : $"Delivery Error: {r.Error.Reason}");

        using (var p = new ProducerBuilder<Null, string>(conf).Build())
        {
            for (int i = 0; i < 100; ++i)
            {
                p.Produce("my-topic", new Message<Null, string> { Value = i.ToString() }, handler);
            }

            // wait for up to 10 seconds for any inflight messages to be delivered.
            p.Flush(TimeSpan.FromSeconds(10));
        }
    }
}

Basic Consumer Example

using System;
using System.Threading;
using Confluent.Kafka;

class Program
{
    public static void Main(string[] args)
    {
        var conf = new ConsumerConfig
        {
            GroupId = "test-consumer-group",
            BootstrapServers = "localhost:9092",
            // Note: The AutoOffsetReset property determines the start offset in the event
            // there are not yet any committed offsets for the consumer group for the
            // topic/partitions of interest. By default, offsets are committed
            // automatically, so in this example, consumption will only start from the
            // earliest message in the topic 'my-topic' the first time you run the program.
            AutoOffsetReset = AutoOffsetReset.Earliest
        };

        using (var c = new ConsumerBuilder<Ignore, string>(conf).Build())
        {
            c.Subscribe("my-topic");

            CancellationTokenSource cts = new CancellationTokenSource();
            Console.CancelKeyPress += (_, e) => {
                // Prevent the process from terminating.
                e.Cancel = true;
                cts.Cancel();
            };

            try
            {
                while (true)
                {
                    try
                    {
                        var cr = c.Consume(cts.Token);
                        Console.WriteLine($"Consumed message '{cr.Value}' at: '{cr.TopicPartitionOffset}'.");
                    }
                    catch (ConsumeException e)
                    {
                        Console.WriteLine($"Error occured: {e.Error.Reason}");
                    }
                }
            }
            catch (OperationCanceledException)
            {
                // Ensure the consumer leaves the group cleanly and final offsets are committed.
                c.Close();
            }
        }
    }
}

IHostedService and Web Application Integration

The Web example demonstrates how to integrate Apache Kafka with a web application, including how to implement IHostedService to realize a long running consumer poll loop, how to register a producer as a singleton service, and how to bind configuration from an injected IConfiguration instance.

Exactly Once Processing

The .NET Client has full support for transactions and idempotent message production, allowing you to write horizontally scalable stream processing applications with exactly once semantics. The ExactlyOnce example demonstrates this capability by way of an implementation of the classic "word count" problem, also demonstrating how to use the FASTER Key/Value store (similar to RocksDb) to materialize working state that may be larger than available memory, and incremental rebalancing to avoid stop-the-world rebalancing operations and unnecessary reloading of state when you add or remove processing nodes.

Schema Registry Integration

The three "Serdes" packages provide serializers and deserializers for Avro, Protobuf and JSON with Confluent Schema Registry integration. The Confluent.SchemaRegistry nuget package provides a client for interfacing with Schema Registry's REST API.

Note: All three serialization formats are supported across Confluent Platform. They each make different tradeoffs, and you should use the one that best matches to your requirements. Avro is well suited to the streaming data use-case, but the quality and maturity of the non-Java implementations lags that of Java - this is an important consideration. Protobuf and JSON both have great support in .NET.

Error Handling

Errors delivered to a client's error handler should be considered informational except when the IsFatal flag is set to true, indicating that the client is in an un-recoverable state. Currently, this can only happen on the producer, and only when enable.idempotence has been set to true. In all other scenarios, clients will attempt to recover from all errors automatically.

Although calling most methods on the clients will result in a fatal error if the client is in an un-recoverable state, you should generally only need to explicitly check for fatal errors in your error handler, and handle this scenario there.

Producer

When using Produce, to determine whether a particular message has been successfully delivered to a cluster, check the Error field of the DeliveryReport during the delivery handler callback.

When using ProduceAsync, any delivery result other than NoError will cause the returned Task to be in the faulted state, with the Task.Exception field set to a ProduceException containing information about the message and error via the DeliveryResult and Error fields. Note: if you await the call, this means a ProduceException will be thrown.

Consumer

All Consume errors will result in a ConsumeException with further information about the error and context available via the Error and ConsumeResult fields.

3rd Party

There are numerous libraries that expand on the capabilities provided by Confluent.Kafka, or use Confluent.Kafka to integrate with Kafka. For more information, refer to the 3rd Party Libraries page.

Confluent Cloud

For a step-by-step guide on using the .NET client with Confluent Cloud see Getting Started with Apache Kafka and .NET on Confluent Developer.

You can also refer to the Confluent Cloud example which demonstrates how to configure the .NET client for use with Confluent Cloud.

Developer Notes

Instructions on building and testing confluent-kafka-dotnet can be found here.

Copyright (c) 2016-2019 Confluent Inc. 2015-2016 Andreas Heider

KAFKA is a registered trademark of The Apache Software Foundation and has been licensed for use by confluent-kafka-dotnet. confluent-kafka-dotnet has no affiliation with and is not endorsed by The Apache Software Foundation.

Showing the top 20 packages that depend on Confluent.Kafka.

Packages Downloads
MassTransit.Kafka
MassTransit Kafka Support; MassTransit is a message-based distributed application framework for .NET http://masstransit-project.com
126
MassTransit.Kafka
MassTransit Kafka Support; MassTransit is a message-based distributed application framework for .NET http://masstransit-project.com
127
MassTransit.Kafka
MassTransit Kafka Support; MassTransit is a message-based distributed application framework for .NET http://masstransit-project.com
128
MassTransit.Kafka
MassTransit Kafka Support; MassTransit is a message-based distributed application framework for .NET http://masstransit-project.com
129
MassTransit.Kafka
MassTransit Kafka Support; MassTransit is a message-based distributed application framework for .NET http://masstransit-project.com
132
MassTransit.Kafka
MassTransit Kafka Support; MassTransit is a message-based distributed application framework for .NET http://masstransit-project.com
147
MassTransit.Kafka
MassTransit Kafka Support; MassTransit is a message-based distributed application framework for .NET http://masstransit-project.com
931
MassTransit.Kafka
MassTransit Kafka Support; MassTransit provides a developer-focused, modern platform for creating distributed applications without complexity.
126
MassTransit.Kafka
MassTransit Kafka Support; MassTransit provides a developer-focused, modern platform for creating distributed applications without complexity.
127
MassTransit.Kafka
MassTransit Kafka Support; MassTransit provides a developer-focused, modern platform for creating distributed applications without complexity.
128
MassTransit.Kafka
MassTransit Kafka Support; MassTransit provides a developer-focused, modern platform for creating distributed applications without complexity.
129
MassTransit.Kafka
MassTransit Kafka Support; MassTransit provides a developer-focused, modern platform for creating distributed applications without complexity.
130
MassTransit.Kafka
MassTransit Kafka Support; MassTransit provides a developer-focused, modern platform for creating distributed applications without complexity.
135
MassTransit.Kafka
MassTransit Kafka Support; MassTransit provides a developer-focused, modern platform for creating distributed applications without complexity.
256

https://github.com/confluentinc/confluent-kafka-dotnet/releases

.NET 10.0

.NET Framework 4.6.2

.NET 8.0

.NET Standard 2.0

Version Downloads Last updated
2.15.1 1 09/10/2026
2.15.1-RC1 5 09/10/2026
2.15.0 29 07/02/2026
2.15.0-RC2 19 06/30/2026
2.14.2 46 06/03/2026
2.14.2-RC1 24 05/28/2026
2.14.0 91 04/02/2026
2.14.0-RC1 38 03/31/2026
2.13.2 70 03/03/2026
2.13.2-RC1 49 02/28/2026
2.13.1 57 02/21/2026
2.13.0 222 01/05/2026
2.13.0-RC2 76 12/30/2025
2.12.0 137 10/10/2025
2.12.0-RC2 87 10/07/2025
2.11.1 497 08/19/2025
2.11.1-RC2 112 08/18/2025
2.11.0 210 07/03/2025
2.11.0-RC2 117 07/03/2025
2.10.1 117 06/12/2025
2.10.1-RC2 104 06/12/2025
2.10.0 142 04/18/2025
2.10.0-RC3 135 04/18/2025
2.9.0 168 04/01/2025
2.8.0 439 01/08/2025
2.8.0-RC1 131 01/08/2025
2.6.1 127 11/24/2024
2.6.1-RC2 122 11/23/2024
2.6.0 281 10/20/2024
2.5.3 117 09/19/2024
2.5.3-RC1 134 09/19/2024
2.5.2 143 08/17/2024
2.5.1 145 08/12/2024
2.5.0 166 07/22/2024
2.5.0-RC5 152 07/22/2024
2.5.0-RC4 165 07/22/2024
2.5.0-RC3 162 07/22/2024
2.4.0 156 07/22/2024
2.4.0-RC2 162 07/21/2024
2.3.0 161 02/15/2024
2.3.0-RC4 143 07/22/2024
2.3.0-RC3 155 07/22/2024
2.2.1 140 04/01/2025
2.2.1-RC1 131 03/30/2025
2.2.0 160 07/22/2024
2.2.0-RC2 158 07/22/2024
2.1.1 148 07/22/2024
2.1.1-RC1 158 07/22/2024
2.1.0 163 07/22/2024
2.1.0-RC3 150 07/22/2024
2.0.2 165 02/04/2024
1.9.4-RC1 158 07/22/2024
1.9.3 152 02/09/2024
1.9.2 151 07/22/2024
1.9.0 161 07/22/2024
1.8.2 397 02/04/2024
1.8.1 146 07/22/2024
1.8.0 159 07/22/2024
1.7.0 168 07/22/2024
1.7.0-RC4 151 07/22/2024
1.6.3 144 07/22/2024
1.6.2 147 07/22/2024
1.5.3 160 07/22/2024
1.5.2 159 07/22/2024
1.5.1 181 07/22/2024
1.5.0 156 07/22/2024
1.4.4 153 07/22/2024
1.4.3 152 07/22/2024
1.4.2 161 07/22/2024
1.4.0 159 07/22/2024
1.3.0 161 07/22/2024
1.2.2 193 07/22/2024
1.2.1 159 07/22/2024
1.2.0 161 07/22/2024
1.1.0 155 07/22/2024
1.0.1.1 162 07/22/2024
1.0.1 157 07/22/2024
1.0.0 154 07/22/2024
1.0.0-beta3 162 07/22/2024
1.0.0-beta2 150 07/22/2024
1.0.0-beta 175 07/22/2024
0.11.6 171 07/22/2024
0.11.5 166 07/22/2024
0.11.4 158 07/22/2024
0.11.3 180 07/22/2024
0.11.2 146 07/22/2024
0.11.1 157 07/22/2024
0.11.0 158 07/22/2024
0.9.5 150 07/22/2024
0.9.4 156 07/22/2024