Confluent.Kafka.DependencyInjection
1.0.0
See the version list below for details.
dotnet add package Confluent.Kafka.DependencyInjection --version 1.0.0
NuGet\Install-Package Confluent.Kafka.DependencyInjection -Version 1.0.0
<PackageReference Include="Confluent.Kafka.DependencyInjection" Version="1.0.0" />
paket add Confluent.Kafka.DependencyInjection --version 1.0.0
#r "nuget: Confluent.Kafka.DependencyInjection, 1.0.0"
// Install Confluent.Kafka.DependencyInjection as a Cake Addin #addin nuget:?package=Confluent.Kafka.DependencyInjection&version=1.0.0 // Install Confluent.Kafka.DependencyInjection as a Cake Tool #tool nuget:?package=Confluent.Kafka.DependencyInjection&version=1.0.0
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<Ignore, 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 | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net5.0 was computed. net5.0-windows was computed. net6.0 was computed. 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. |
-
.NETStandard 2.0
- Confluent.Kafka (>= 1.5.3)
- Microsoft.Extensions.DependencyInjection.Abstractions (>= 3.0.0)
- Microsoft.Extensions.Logging.Abstractions (>= 3.0.0)
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 | 185,245 | 7/21/2023 |
3.0.2 | 199 | 7/21/2023 |
3.0.1 | 13,948 | 4/16/2023 |
3.0.0 | 59,667 | 3/28/2023 |
3.0.0-test3 | 177 | 3/27/2023 |
3.0.0-test2 | 602 | 3/21/2023 |
3.0.0-test | 177 | 3/10/2023 |
2.2.0 | 14,522 | 2/17/2023 |
2.1.2 | 6,975 | 2/2/2023 |
2.1.1 | 19,904 | 1/3/2023 |
2.1.0 | 25,311 | 11/3/2022 |
2.0.1 | 630 | 11/2/2022 |
2.0.1-test | 171 | 11/2/2022 |
2.0.0 | 111,960 | 6/21/2021 |
1.1.0 | 6,571 | 2/28/2021 |
1.0.0 | 769 | 1/8/2021 |
0.1.0 | 859 | 6/15/2020 |