Akka.Persistence.EventStore.Benchmarks
1.5.26
Prefix Reserved
dotnet add package Akka.Persistence.EventStore.Benchmarks --version 1.5.26
NuGet\Install-Package Akka.Persistence.EventStore.Benchmarks -Version 1.5.26
<PackageReference Include="Akka.Persistence.EventStore.Benchmarks" Version="1.5.26" />
paket add Akka.Persistence.EventStore.Benchmarks --version 1.5.26
#r "nuget: Akka.Persistence.EventStore.Benchmarks, 1.5.26"
// Install Akka.Persistence.EventStore.Benchmarks as a Cake Addin #addin nuget:?package=Akka.Persistence.EventStore.Benchmarks&version=1.5.26 // Install Akka.Persistence.EventStore.Benchmarks as a Cake Tool #tool nuget:?package=Akka.Persistence.EventStore.Benchmarks&version=1.5.26
Akka.Persistence.EventStore
Akka Persistence EventStore Plugin is a plugin for Akka Persistence
that provides components:
- Write journal store
- Snapshot store
- Standard persistence queries
- Akka Streams source for persistent subscriptions
This plugin stores data in a EventStoreDB database and based on EventStore.Client.Grpc client library.
Getting started
The Easy Way, Using Akka.Hosting
var host = new HostBuilder()
.ConfigureServices((context, services) => {
services.AddAkka("my-system-name", (builder, provider) =>
{
builder.WithEventStorePersistence(connectionString: _myConnectionString)
});
})
The Classic Way, Using HOCON
These are the minimum HOCON configuration you need to start using Akka.Persistence.EventStore:
akka.persistence {
journal {
plugin = "akka.persistence.journal.eventstore"
eventstore {
class = "Akka.Persistence.EventStore.Journal.EventStoreJournal, Akka.Persistence.EventStore"
connection-string = "{database-connection-string}"
}
}
query.journal.eventstore {
class = "Akka.Persistence.EventStore.Query.EventStoreReadJournalProvider, Akka.Persistence.EventStore"
write-plugin = "akka.persistence.journal.eventstore"
}
snapshot-store {
plugin = "akka.persistence.snapshot-store.eventstore"
eventstore {
class = "Akka.Persistence.EventStore.Snapshot.EventStoreSnapshotStore, Akka.Persistence.EventStore"
connection-string = "{database-connection-string}"
}
}
}
Configuration options
Journal
connection-string
- Connection string, as described here: https://developers.eventstore.com/clients/grpc/#connection-string.materializer-dispatcher
- Dispatcher used to drive journal actoradapter
- Controls how the event data and metadata is stored and retrieved. See Adapter section below for more information.auto-initialize
- Whether or not the plugin should create projections to support read journal on startup. See Projections section below for more information.prefix
- A optional prefix that will be added to streams.tenant
- A optional tenant that should be used to support multi-tenant environments.tagged-stream-name-pattern
- A pattern used when creating a stream name for a tags-stream. The name[[TAG]]
will be replaced by the actual tag used.persistence-ids-stream-name
- A name for the stream that stores all persistence id's (to support read journal).persisted-events-stream-name
- A name for the stream that stores all events (to support read journal).
Snapshot store
connection-string
- Connection string, as described here: https://developers.eventstore.com/clients/grpc/#connection-string.materializer-dispatcher
- Dispatcher used to drive journal actoradapter
- Controls how the event data and metadata is stored and retrieved. See Adapter section below for more information.-prefix
- A optional prefix that will be added to streams.tenant
- A optional tenant that should be used to support multi-tenant environments.
Query journal
write-plugin
- Absolute path to the write journal plugin configuration entry that this query journal will connect to.
Adapter
Akka Persistence EventStore Plugin supports changing how data is stored and retrieved. By default, it will serialize the data using the configured serializer in Akka, and populate the Metadata with the following information:
{
"persistenceId": "p-14",
"occurredOn": "2018-05-03T10:28:06.3437687-06:00",
"manifest": "",
"sender": "",
"sequenceNr": 5,
"writerGuid": "f8706bba-52a7-4326-a760-990c7f657c46",
"journalType": "WriteJournal",
"timestamp": 123456789,
"tenant": "",
"tags": []
}
If you are happy with the default serialization and metadata, but want to just augment the metadata or data, or do any of the following:
- Inspect event to add metadata
- Encrypt data
- Change the "type" stored in event store
You can inherit from DefaultAdapter and override the Serialize
, DeSerialize
, GetEventMetadata
, GetSnapshotMetadata
, GetEventMetadataFrom
and GetSnapshotMetadataFrom
methods
You also have the option of creating a new implemenation of Akka.Persistence.EventStore.Serialization.IMessageAdapter
.
Everything is DIY in this case, including correct handling of internal Akka types if they appear in
events. Make use of the supplied Akka.Serialization.Serialization
to help with this.
public class CustomAdapter : IMessageAdapter
{
public CustomAdapter(Akka.Serialization.Serialization serialization, ISettingsWithAdapter settings)
{
}
public Task<EventData> Adapt(IPersistentRepresentation persistentMessage)
{
// Implement
}
public Task<EventData> Adapt(SnapshotMetadata snapshotMetadata, object snapshot)
{
// Implement
}
public Task<IPersistentRepresentation?> AdaptEvent(ResolvedEvent evnt)
{
// Implement
}
public Task<SelectedSnapshot?> AdaptSnapshot(ResolvedEvent evnt)
{
// Implement
}
public string GetManifest(Type type)
{
// Implement
}
}
Whichever direction you go, you will need to override the configuration
Using Akka Hosting:
var host = new HostBuilder()
.ConfigureServices((context, services) => {
services.AddAkka("my-system-name", (builder, provider) =>
{
builder.WithEventStorePersistence(
connectionString: _myConnectionString,
adapter: "Your.Namespace.YourAdapter, Your.Assembly")
});
})
Using Hocon:
akka.persistence {
journal {
plugin = "akka.persistence.journal.eventstore""
eventstore {
class = "Akka.Persistence.EventStore.Journal.EventStoreJournal, Akka.Persistence.EventStore"
connection-string = "esdb://admin:changeit@localhost:2113"
adapter = "Your.Namespace.YourAdapter, Your.Assembly"
}
}
}
Projections
To support the Read Journal the plugin takes advantage of the projections feature
of EventStoreDB. If you setup auto-initialize
on the Journal the required projections will be created for you on startup. You can also use Akka.Persistence.EventStore.Projections.EventStoreProjectionsSetup
to create the projections yourself if you want.
Persistent subscriptions
Persistent subscriptions can be used to subscribe to events stored in EventStoreDb and let the database handle offsets. This plugin gives you a Akka streams source to make it easy to work with within Akka.net.
var clientSettings = EventStoreClientSettings.Create(eventStoreContainer.ConnectionString ?? "");
var subscriptionClient = new EventStorePersistentSubscriptionsClient(clientSettings);
EventStoreSource
.ForPersistentSubscription(
subscriptionClient,
"your-stream-name",
"your-subscriptions-group-name",
keepReconnecting: true) //true if you want the client to reconnect if it's disconnected, otherwise false (default).
.RunForeach(x =>
{
Console.WriteLine(x.Event.Event.EventType);
x.Ack();
}, _actorSystem.Materializer());
Release Notes, Version Numbers, Etc
This project will automatically populate its release notes in all of its modules via the entries written inside RELEASE_NOTES.md
and will automatically update the versions of all assemblies and NuGet packages via the metadata included inside Directory.Build.props
.
Breaking Changes in 1.5
This is a complete rewrite of the plugin to use EventStore.Client.Grpc. This means that the plugin is not compatible with previous versions.
Maintainer
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. |
-
net8.0
- Akka.Persistence.EventStore (>= 1.5.26)
- Akka.Persistence.EventStore.Tests (>= 1.5.26)
- BenchmarkDotNet (>= 0.13.12)
- FluentAssertions (>= 6.12.0)
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.
Upgrade Akka to version 1.5.26
[Fix for an issue](https://github.com/akkadotnet/Akka.Persistence.EventStore/pull/45) where tagged query would fail if some matching
events was deleted