Akka 1.5.70-beta1

Akka.NET

Akka.NET logo

Discord NuGet Nuget

Akka.NET is a .NET port of the popular Akka project from the Scala / Java community. We are an idiomatic .NET implementation of the actor model built on top of the .NET Common Language Runtime.

Akka.NET is a .NET Foundation project.

.NET Foundation Logo

How is Akka.NET Used?

Akka.NET can be used in-process or inside large, distributed real-time systems; we support a wide variety of use cases.

Akka.NET can be used to solve the following types of problems:

  1. Concurrency - Akka.NET actors only process messages one-at-a-time and they do so in first in, first out (FIFO) order; this means that any application state internal to an actor is automatically thread-safe without having to use locks or any other shared-memory synchronization mechanisms.
  2. Stream Processing - Akka.NET actors and Akka.Streams make it easy to build streaming applications, used for processing incoming streams of data or incoming streams of live events such as UI or network events inside native applications.
  3. Event-Driven Programming - actors make it easy to build event-driven applications, as actors' message-processing routines naturally express these types of designs.
  4. Event Sourcing and CQRS - Akka.Persistence, used by actors to make their state re-entrant and recoverable across restarts or migrations between nodes, natively supports event sourcing. Akka.Persistence.Query can be used to compute CQRS-style projections and materialized views from Akka.Persistence data.
  5. Location Transparency - Akka.Remote makes it simple for actors in remote processes to transparently communicate with each other.
  6. Highly Available, Fault-Tolerant Distributed Systems - Akka.Cluster, Akka.Cluster.Sharding, and other tools built on top of Akka.Cluster make it possible to build highly available and fault-tolerant distributed systems by leveraging peer-to-peer programming models with topology-aware message routing and distribution.
  7. Low Latency, High Throughput - Akka.NET aims to be low latency and high throughput, processing 10s millions of messages per second in-memory and hundreds of thousands of messages per second over remote connections.

Where Can I Learn Akka.NET?

You can start by taking the Akka.NET Bootcamp, but there are many other great learning resources for Akka.NET Online.

Build Status

Stage Status
NuGet Pack Build Status
.NET Framework Unit Tests Build Status
.NET Unit Tests (Windows) Build Status
.NET Unit Tests (Linux) Build Status
.NET MultiNode Tests (Windows) Build Status
.NET MultiNode Tests (Linux) Build Status
Docs Build Status

Install Akka.NET via NuGet

If you want to include Akka.NET in your project, you can install it directly from NuGet

To install Akka.NET Distributed Actor Framework, run the following command in the Package Manager Console

PM> Install-Package Akka.Hosting

Akka.Hosting includes the base Akka NuGet package and also provides an easy interface to integrate Akka.NET with the most-used parts of the Microsoft.Extensions ecosystem: Configuration, Logging, Hosting, and DependencyInjection. We encourage developers to adopt it.

And if you need F# support:

PM> Install-Package Akka.FSharp

Akka.NET Project Templates

To create your own Akka.NET projects using our templates (Akka.Templates), install them via the dotnet CLI:

dotnet new install "Akka.Templates::*"

This will make our templates available via dotnet new on the CLI and as new project templates inside any .NET IDE such as Visual Studio or JetBrains Rider. You can view the full list of templates included in our package here: https://github.com/akkadotnet/akkadotnet-templates#available-templates

Builds

Please see Building Akka.NET.

To access nightly Akka.NET builds, please see the instructions here.

Support

If you need help getting started with Akka.NET, there's a number of great community resources online:

If you and your company are interested in getting professional Akka.NET support, you can contact Petabridge for dedicated Akka.NET support.

No packages depend on Akka.

Akka.NET v1.5.70-beta1 is a beta release with a new Offset.FromEnd query offset for Akka.Persistence.Query, bug fixes for Akka.Streams async enumerable disposal, and a performance improvement for BroadcastHub with high consumer counts.

Akka.Persistence.Query

  • Add Offset.FromEnd(int count) รขโ‚ฌโ€ "last-N events" query offset: Introduces Offset.FromEnd(int count), a new query-input-only offset type that begins a read journal query at the Nth event from the end of history rather than from the beginning. The offset is resolved at stream materialization into a concrete Sequence start position; no interface changes or wire-format changes are required. Includes opt-in TCK spec (FromEndOffsetSpec) for plugin authors.

Akka.Streams Bug Fixes

  • Fix: async enumerable source disposal ordering: Fixes a race in Source.From(IAsyncEnumerable<T>) where the underlying enumerator could be disposed before all elements were delivered to downstream, causing ObjectDisposedException on high-throughput pipelines.

Akka.Streams Performance

1 contributor since release 1.5.69

COMMITS LOC+ LOC- AUTHOR
3 1438 180 Aaron Stannard

Version Downloads Last updated
1.5.70-beta1 3 06/25/2026
1.5.69 18 06/14/2026
1.5.68 22 05/19/2026
1.5.67 32 04/26/2026
1.5.66 28 04/26/2026
1.5.65 25 04/12/2026
1.5.64 27 04/02/2026
1.5.63 28 03/26/2026
1.5.62 21 03/05/2026
1.5.61 30 03/02/2026
1.5.60 31 02/10/2026
1.5.59 34 01/28/2026
1.5.58 34 01/11/2026
1.5.57 42 12/12/2025
1.5.57-beta2 37 12/11/2025
1.5.57-beta1 32 12/11/2025
1.5.56 29 12/11/2025
1.5.55 29 12/13/2025
1.5.54 31 12/11/2025
1.5.53 29 12/14/2025
1.5.52 31 12/13/2025
1.5.51 31 12/13/2025
1.5.50 32 12/10/2025
1.5.49 28 12/12/2025
1.5.48 33 12/11/2025
1.5.47 29 12/12/2025
1.5.46 38 12/10/2025
1.5.45 43 12/09/2025
1.5.44 29 12/10/2025
1.5.43 29 12/11/2025
1.5.42 35 12/11/2025
1.5.41 32 12/11/2025
1.5.40 31 12/11/2025
1.5.39 28 12/11/2025
1.5.38 25 12/10/2025
1.5.37 29 12/15/2025
1.5.36 29 12/13/2025
1.5.35 31 12/10/2025
1.5.34 30 12/12/2025
1.5.33 19 12/12/2025
1.5.32 33 12/09/2025
1.5.31 39 12/11/2025
1.5.30 28 12/10/2025
1.5.29 34 12/11/2025
1.5.28 37 12/10/2025
1.5.28-beta1 28 12/09/2025
1.5.27.1 30 12/09/2025
1.5.27 29 12/11/2025
1.5.27-beta2 27 12/11/2025
1.5.27-beta1 28 12/11/2025
1.5.26 31 12/11/2025
1.5.25 28 12/10/2025
1.5.24 30 12/09/2025
1.5.23 29 12/10/2025
1.5.22 23 12/12/2025
1.5.21 31 12/10/2025
1.5.20 25 12/10/2025
1.5.19 30 12/11/2025
1.5.18 34 12/10/2025
1.5.17.1 32 12/12/2025
1.5.17 30 12/12/2025
1.5.16 33 12/09/2025
1.5.15 34 12/09/2025
1.5.14 30 12/12/2025
1.5.13 30 12/10/2025
1.5.13-beta1 24 12/10/2025
1.5.12 29 12/11/2025
1.5.11 32 12/11/2025
1.5.10 35 12/10/2025
1.5.9 34 12/11/2025
1.5.8 39 12/12/2025
1.5.7 30 12/11/2025
1.5.6 26 12/10/2025
1.5.5 20 12/13/2025
1.5.4 30 12/10/2025
1.5.3 29 12/10/2025
1.5.2 25 12/11/2025
1.5.1 31 12/09/2025
1.5.0 34 12/10/2025
1.5.0-beta6 36 12/14/2025
1.5.0-beta5 28 12/13/2025
1.5.0-beta4 31 12/09/2025
1.5.0-beta3 25 12/10/2025
1.5.0-beta2 29 12/14/2025
1.5.0-beta1 30 12/10/2025
1.5.0-alpha4 35 12/10/2025
1.5.0-alpha3 27 12/11/2025
1.5.0-alpha2 30 12/12/2025
1.5.0-alpha1 30 12/10/2025
1.4.51 23 12/13/2025
1.4.50 35 12/10/2025
1.4.49 31 12/12/2025
1.4.49-beta1 28 12/11/2025
1.4.48 35 12/11/2025
1.4.47 23 12/10/2025
1.4.46 26 12/12/2025
1.4.45 25 12/09/2025
1.4.44 32 12/11/2025
1.4.43 31 12/11/2025
1.4.42 28 12/09/2025
1.4.41 28 12/13/2025
1.4.40 28 12/10/2025
1.4.39 24 12/10/2025
1.4.38 32 12/10/2025
1.4.37 31 12/10/2025
1.4.36 27 12/15/2025
1.4.35 26 12/10/2025
1.4.34 26 12/13/2025
1.4.33 29 12/10/2025
1.4.32 30 12/12/2025
1.4.31 28 12/11/2025
1.4.30 29 12/12/2025
1.4.29 31 12/11/2025
1.4.28 28 12/10/2025
1.4.27 30 12/10/2025
1.4.26 30 12/13/2025
1.4.25 30 12/12/2025
1.4.24 26 12/10/2025
1.4.23 31 12/11/2025
1.4.22 31 12/11/2025
1.4.21 36 12/10/2025
1.4.21-beta1 28 12/12/2025
1.4.20 30 12/15/2025
1.4.19 33 12/15/2025
1.4.18 27 12/10/2025
1.4.17 25 12/10/2025
1.4.16 33 12/12/2025
1.4.15 33 12/11/2025
1.4.14 31 12/10/2025
1.4.13 25 12/10/2025
1.4.12 28 12/09/2025
1.4.11 31 12/15/2025
1.4.10 34 12/15/2025
1.4.9 28 12/10/2025
1.4.8 27 12/12/2025
1.4.7 47 12/11/2025
1.4.6 34 12/10/2025
1.4.5 32 12/10/2025
1.4.4 27 12/12/2025
1.4.3 28 12/10/2025
1.4.2 25 12/12/2025
1.4.1 35 12/10/2025
1.4.1-rc3 27 12/09/2025
1.4.1-rc2 35 12/10/2025
1.4.1-rc1 28 12/14/2025
1.4.0 29 12/14/2025
1.4.0-beta4 25 12/16/2025
1.4.0-beta3 25 12/13/2025
1.4.0-beta2 22 12/10/2025
1.4.0-beta1 24 12/09/2025
1.3.19 35 12/11/2025
1.3.18 30 12/12/2025
1.3.17 26 12/10/2025
1.3.16 33 12/10/2025
1.3.15 31 12/11/2025
1.3.14 27 12/11/2025
1.3.13 34 12/11/2025
1.3.12 25 12/11/2025
1.3.11 30 12/11/2025
1.3.10 22 12/15/2025
1.3.9 31 12/11/2025
1.3.8 34 12/12/2025
1.3.7 29 12/12/2025
1.3.6 30 12/12/2025
1.3.5 36 12/09/2025
1.3.4 30 12/10/2025
1.3.3 22 12/15/2025
1.3.2 32 12/10/2025
1.3.1 27 12/12/2025
1.3.0 37 12/15/2025
1.2.3 25 12/09/2025
1.2.2 29 12/09/2025
1.2.1 32 12/11/2025
1.2.0 32 12/12/2025
1.1.3 31 12/15/2025
1.1.2 29 12/15/2025
1.1.1 27 12/14/2025
1.1.0 36 12/11/2025
1.0.8 26 12/10/2025
1.0.7 33 12/11/2025
1.0.6 33 12/11/2025
1.0.5 30 12/10/2025
1.0.4 38 12/12/2025
1.0.3 35 12/10/2025
1.0.2 35 12/11/2025
1.0.1 43 12/10/2025
1.0.0 28 12/10/2025
1.0.0-dev1504032244 28 12/10/2025
0.8.0 23 12/15/2025
0.7.1 31 12/11/2025
0.7.0 29 12/14/2025
0.6.4 27 12/11/2025
0.6.3 36 12/09/2025
0.6.2 25 12/11/2025
0.6.1 30 12/10/2025
0.6.0 33 12/11/2025
0.5.8 30 12/12/2025
0.5.2 32 12/12/2025
0.5.0 33 12/11/2025
0.2.1-beta 27 12/11/2025
0.2.0-beta 28 12/10/2025