KafkaConsumerHost 1.0.23
dotnet add package KafkaConsumerHost --version 1.0.23
NuGet\Install-Package KafkaConsumerHost -Version 1.0.23
<PackageReference Include="KafkaConsumerHost" Version="1.0.23" />
<PackageVersion Include="KafkaConsumerHost" Version="1.0.23" />
<PackageReference Include="KafkaConsumerHost" />
paket add KafkaConsumerHost --version 1.0.23
#r "nuget: KafkaConsumerHost, 1.0.23"
#addin nuget:?package=KafkaConsumerHost&version=1.0.23
#tool nuget:?package=KafkaConsumerHost&version=1.0.23
KafkaConsumerHost
KafkaConsumerHost is a simple .NET SDK that provides a framework for building Kafka consumers with dynamic topic handling and dependency injection support.
Requirements
- .NET 8.0
Installation
You can install the package via NuGet:
Install-Package KafkaConsumerHost
Usage
1. Create a New .NET 8 Service Project
Create a new .NET 8 service project and add the following code to the Program.cs
file:
using Microsoft.Extensions.Hosting;
using KafkaConsumerHost.Extensions;
var host = Host.CreateDefaultBuilder(args)
.AddKafkaConsumerHost()
.Build();
await host.RunAsync();
2. Define a Kafka Consumer
Create a class that inherits from KafkaConsumerBase and use the ConsumeTopicAttribute to specify the topic to consume:
using KafkaConsumerHost;
using KafkaConsumerHost.Attributes;
public class OrdersConsumer : KafkaConsumerBase
{
[ConsumeTopic(PropertyName=nameof(MyKafkaSettings.ExampleTopic),FromType= typeof(IOptions<MyKafkaSettings>))]
public async Task HandleOrder(string message)
{
// Handle the message
}
}
3. Define KafkaConsumerConfig in the appsettings.json file
{
"KafkaConsumerConfig": {
"BootstrapServers": "localhost:9092",
"GroupId": "test-group",
"AutoOffsetReset": "Latest"//or "Earliest"
}
}
4. Define MyKafkaSettings in the appsettings.json file
{
"MyKafkaSettings": {
"ExampleTopic": "example-topic"
}
}
5. Inject the KafkaConsumerConfig and MyKafkaSettings into the service
using Microsoft.Extensions.DependencyInjection;
using Microsoft.Extensions.Hosting;
using KafkaConsumerHost.Extensions;
var host = Host.CreateDefaultBuilder(args)
.AddKafkaConsumerHost()
.ConfigureServices((hostContext, services) =>
{
services.Configure<KafkaConsumerConfig>(c=>hostContext.Configuration.GetSection(nameof(KafkaConsumerConfig)).Bind(c));
services.Configure<MyKafkaSettings>(c=>hostContext.Configuration.GetSection(nameof(MyKafkaSettings)).Bind(c));
//Add other services here
})
.Build();
await host.RunAsync();
6. Run the Service
Run the service and the Kafka consumer will start consuming messages from the specified topic.
License
This project is licensed under the MIT License - see the LICENSE file for details.
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net8.0 is compatible. 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. net9.0 was computed. net9.0-android was computed. net9.0-browser was computed. net9.0-ios was computed. net9.0-maccatalyst was computed. net9.0-macos was computed. net9.0-tvos was computed. net9.0-windows was computed. |
-
net8.0
- Confluent.Kafka (>= 2.8.0)
- Microsoft.Extensions.Configuration (>= 9.0.1)
- Microsoft.Extensions.Hosting.Abstractions (>= 9.0.0)
- Newtonsoft.Json (>= 13.0.3)
NuGet packages (2)
Showing the top 2 NuGet packages that depend on KafkaConsumerHost:
Package | Downloads |
---|---|
KafkaConsumerTemplateV8
A .NET project template for Kafka consumer applications. |
|
KafkaConsumerMongoDbTemplateV8
A .NET project template for quickly setting up Kafka consumer applications. This template simplifies the process of building robust Kafka consumer services with essential configurations and features like message consumption, dependency injection, and graceful shutdown handling. Perfect for developers working with Apache Kafka in .NET. |
GitHub repositories
This package is not used by any popular GitHub repositories.
Version 1.0.23 - Initial Release