Akka.Streams.Kafka 1.0.0-beta1

Prefix Reserved
This is a prerelease version of Akka.Streams.Kafka.
There is a newer version of this package available.
See the version list below for details.
dotnet add package Akka.Streams.Kafka --version 1.0.0-beta1                
NuGet\Install-Package Akka.Streams.Kafka -Version 1.0.0-beta1                
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="Akka.Streams.Kafka" Version="1.0.0-beta1" />                
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Akka.Streams.Kafka --version 1.0.0-beta1                
#r "nuget: Akka.Streams.Kafka, 1.0.0-beta1"                
#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 Akka.Streams.Kafka as a Cake Addin
#addin nuget:?package=Akka.Streams.Kafka&version=1.0.0-beta1&prerelease

// Install Akka.Streams.Kafka as a Cake Tool
#tool nuget:?package=Akka.Streams.Kafka&version=1.0.0-beta1&prerelease                

Apache Kafka adapter for Akka.NET Streams

Product 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. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages (1)

Showing the top 1 NuGet packages that depend on Akka.Streams.Kafka:

Package Downloads
AkkaDotModule.Webnori

Package Description

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
1.5.15 6,028 1/11/2024
1.5.13.1 1,525 10/4/2023
1.5.13 137 10/4/2023
1.5.8 4,604 6/16/2023
1.5.0 92,966 3/4/2023
1.4.49 2,629 1/27/2023
1.2.2 11,897 10/21/2022
1.2.1 64,705 1/26/2022
1.2.0 1,237 11/17/2021
1.1.4 4,254 9/8/2021
1.1.3 2,488 5/24/2021
1.1.2 21,376 3/9/2021
1.1.1 3,332 12/16/2020
1.1.0 4,873 11/6/2020
1.0.1 2,489 5/27/2020
1.0.0 3,401 3/11/2020
1.0.0-rc2 396 3/10/2020
1.0.0-rc1 386 3/2/2020
1.0.0-beta2 617 2/18/2020
1.0.0-beta1 2,120 11/28/2019
0.5.0-beta 454 8/7/2019

First beta release of Akka.Streams.Kafka**
In this release, library was rewritten almost completely.
Conceptually, the main part of this release is implementing all consuming and producing stages supported in Alpakka project: https://github.com/akka/alpakka.
See https://github.com/akkadotnet/Akka.Streams.Kafka/issues/36 for full list of implemented stages (there are 11 consumer and 3 producer stages implemented).
Transactional stages are partially implemented, but waiting for issue https://github.com/akkadotnet/Akka.Streams.Kafka/issues/85 to be resolved
(which in turn is waiting for issue in Confluent driver to be closed).
Among the others improvements, some critical issues were resolved, like
- Get rid of internal buffering and scheduled pooling in Consumer stages (https://github.com/akkadotnet/Akka.Streams.Kafka/issues/35)
- DrainControl class is implement, which allows to shutdown stages from outside (so does not require source to be finished to stop processing)