KafkaConsumerHost 1.0.23

dotnet add package KafkaConsumerHost --version 1.0.23
                    
NuGet\Install-Package KafkaConsumerHost -Version 1.0.23
                    
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="KafkaConsumerHost" Version="1.0.23" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="KafkaConsumerHost" Version="1.0.23" />
                    
Directory.Packages.props
<PackageReference Include="KafkaConsumerHost" />
                    
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add KafkaConsumerHost --version 1.0.23
                    
#r "nuget: KafkaConsumerHost, 1.0.23"
                    
#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.
#addin nuget:?package=KafkaConsumerHost&version=1.0.23
                    
Install KafkaConsumerHost as a Cake Addin
#tool nuget:?package=KafkaConsumerHost&version=1.0.23
                    
Install KafkaConsumerHost as a Cake Tool

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 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. 
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 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 Downloads Last updated
1.0.23 158 3/11/2025
1.0.22 107 1/31/2025
1.0.21 97 1/31/2025
1.0.2 93 1/31/2025
1.0.1 198 1/25/2025
1.0.0 91 1/24/2025

Version 1.0.23 - Initial Release