Confluent.Kafka.DependencyInjection 3.0.0-test

This is a prerelease version of Confluent.Kafka.DependencyInjection.
There is a newer version of this package available.
See the version list below for details.
dotnet add package Confluent.Kafka.DependencyInjection --version 3.0.0-test
NuGet\Install-Package Confluent.Kafka.DependencyInjection -Version 3.0.0-test
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="Confluent.Kafka.DependencyInjection" Version="3.0.0-test" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Confluent.Kafka.DependencyInjection --version 3.0.0-test
#r "nuget: Confluent.Kafka.DependencyInjection, 3.0.0-test"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install Confluent.Kafka.DependencyInjection as a Cake Addin
#addin nuget:?package=Confluent.Kafka.DependencyInjection&version=3.0.0-test&prerelease

// Install Confluent.Kafka.DependencyInjection as a Cake Tool
#tool nuget:?package=Confluent.Kafka.DependencyInjection&version=3.0.0-test&prerelease

Kafka Dependency Injection

An extension of Confluent's Kafka client for use with Microsoft.Extensions.DependencyInjection (and friends).

Features

  • Configure Kafka producers/consumers using Microsoft.Extensions.DependencyInjection.IServiceCollection.
  • Default logging of asynchronous Kafka events through Microsoft.Extensions.Logging.ILogger.

Installation

Add the NuGet package to your project:

$ dotnet add package Confluent.Kafka.DependencyInjection

Usage

Add a global Kafka client:

services.AddKafkaClient(new Dictionary<string, string>
{
    { "bootstrap.servers", "localhost:9092" },
    { "enable.idempotence", "true" },
    { "group.id", "group1" }
});

Alternatively, add typed clients with distinct configurations:

services.AddKafkaClient<MyService>(new ProducerConfig
{
    BootstrapServers = "localhost:9092",
    EnableIdempotence = true
});

services.AddKafkaClient<MyOtherService>(new ConsumerConfig
{
    BootstrapServers = "somewhere.else:9092",
    GroupId = "group1"
});

Optionally, configure message serialization:

// Use open generics to apply to all keys and values.
services.AddSingleton(typeof(IAsyncDeserializer<>), typeof(AvroDeserializer<>));

// Use closed generics to select type-specific serializers.
services.AddSingleton<IAsyncSerializer<MyType>, JsonSerializer<MyType>>();

// Synchronous serializers take precedence, if present.
services.AddSingleton(sp => sp.GetRequiredService<IAsyncSerializer<MyType>>().AsSyncOverAsync());

// Configure schema registry (required by some serializers).
services.AddSingleton<ISchemaRegistryClient>(sp =>
    new CachedSchemaRegistryClient(new SchemaRegistryConfig
    {
        Url = "localhost:8081"
    }));

Optionally, configure custom handlers for Kafka events:

services.AddTransient<IErrorHandler, MyHandler>()
    .AddTransient<IStatisticsHandler, MyHandler>()
    .AddTransient<ILogHandler, MyHandler>()
    .AddTransient<IPartitionsAssignedHandler, MyHandler>()
    .AddTransient<IPartitionsRevokedHandler, MyHandler>()
    .AddTransient<IOffsetsCommittedHandler, MyHandler>();

Inject producers/consumers via constructor:

public MyService(IProducer<Null, string> producer)
{
    // Producer is a singleton managed by the container.
    this.producer = producer;
}

Alternatively, inject IKafkaFactory to override configuration and control lifespan:

using var consumer = factory.CreateConsumer<MyType, MyOtherType>(new ConsumerConfig
{
    GroupId = "group2"
});

// ...
// Remember to close manually created consumers.
consumer.Close();
Product Compatible and additional computed target framework versions.
.NET net5.0 was computed.  net5.0-windows was computed.  net6.0 is compatible.  net6.0-android was computed.  net6.0-ios was computed.  net6.0-maccatalyst was computed.  net6.0-macos was computed.  net6.0-tvos was computed.  net6.0-windows was computed.  net7.0 was computed.  net7.0-android was computed.  net7.0-ios was computed.  net7.0-maccatalyst was computed.  net7.0-macos was computed.  net7.0-tvos was computed.  net7.0-windows was computed.  net8.0 was computed.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed. 
.NET Core netcoreapp2.0 was computed.  netcoreapp2.1 was computed.  netcoreapp2.2 was computed.  netcoreapp3.0 was computed.  netcoreapp3.1 was computed. 
.NET Standard netstandard2.0 is compatible.  netstandard2.1 was computed. 
.NET Framework net461 was computed.  net462 was computed.  net463 was computed.  net47 was computed.  net471 was computed.  net472 was computed.  net48 was computed.  net481 was computed. 
MonoAndroid monoandroid was computed. 
MonoMac monomac was computed. 
MonoTouch monotouch was computed. 
Tizen tizen40 was computed.  tizen60 was computed. 
Xamarin.iOS xamarinios was computed. 
Xamarin.Mac xamarinmac was computed. 
Xamarin.TVOS xamarintvos was computed. 
Xamarin.WatchOS xamarinwatchos was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages (2)

Showing the top 2 NuGet packages that depend on Confluent.Kafka.DependencyInjection:

Package Downloads
DanielXOO.Serilog.Sinks.Kafka

Serilog sink for kafka

SkillAssessor.Common.Logging

Package Description

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
3.1.0 70,352 7/21/2023
3.0.2 153 7/21/2023
3.0.1 13,464 4/16/2023
3.0.0 59,462 3/28/2023
3.0.0-test3 148 3/27/2023
3.0.0-test2 570 3/21/2023
3.0.0-test 149 3/10/2023
2.2.0 6,757 2/17/2023
2.1.2 5,491 2/2/2023
2.1.1 15,787 1/3/2023
2.1.0 21,091 11/3/2022
2.0.1 372 11/2/2022
2.0.1-test 140 11/2/2022
2.0.0 91,262 6/21/2021
1.1.0 5,986 2/28/2021
1.0.0 739 1/8/2021
0.1.0 770 6/15/2020