Akka.Persistence.EventStore 1.5.18

The ID prefix of this package has been reserved for one of the owners of this package by NuGet.org. Prefix Reserved
dotnet add package Akka.Persistence.EventStore --version 1.5.18
NuGet\Install-Package Akka.Persistence.EventStore -Version 1.5.18
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.Persistence.EventStore" Version="1.5.18" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Akka.Persistence.EventStore --version 1.5.18
#r "nuget: Akka.Persistence.EventStore, 1.5.18"
#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.Persistence.EventStore as a Cake Addin
#addin nuget:?package=Akka.Persistence.EventStore&version=1.5.18

// Install Akka.Persistence.EventStore as a Cake Tool
#tool nuget:?package=Akka.Persistence.EventStore&version=1.5.18

Akka.Persistence.EventStore

NuGet Version

Akka Persistence EventStore Plugin is a plugin for Akka Persistence that provides components:

This plugin stores data in a EventStoreDB database and based on EventStore.Client.Grpc client library.

Installation

From Nuget Package Manager

Install-Package Akka.Persistence.EventStore

From .NET CLI

dotnet add package Akka.Persistence.EventStore

Write Journal plugin

To activate the journal plugin, add the following line to your HOCON config:

akka.persistence.journal.plugin = "akka.persistence.journal.eventstore"

This will run the journal with its default settings. The default settings can be changed with the configuration properties defined in your HOCON config:

Configuration
  • connection-string - Connection string, as described here: https://developers.eventstore.com/clients/grpc/#connection-string.
  • adapter - 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).
Example HOCON Configuration
 akka.persistence {
    journal {
        plugin = "akka.persistence.journal.eventstore""
        eventstore {
            connection-string = "esdb://admin:changeit@localhost:2113"
	    adapter = "default"
	    auto-initialize = false
	    
	    prefix = ""
	    tenant = ""

	    tagged-stream-name-pattern = "tagged-[[TAG]]"
	    persistence-ids-stream-name = "persistenceids"
	    persisted-events-stream-name = "persistedevents"
        }
    }
}

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 HOCON to use your new adapter

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"
        }
    }
}

Snapshot plugin

To activate the snapshot plugin, add the following line to your HOCON config:

akka.persistence.snapshot-store.plugin = "akka.persistence.snapshot-store.eventstore"

This will run the snapshot store with its default settings. The default settings can be changed with the configuration properties defined in your HOCON config:

Configuration
  • connection-string - Connection string, as described here: https://developers.eventstore.com/clients/grpc/#connection-string.
  • adapter - 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.
Example HOCON Configuration
 akka.persistence {
    snapshot-store {
        plugin = "akka.persistence.snapshot-store.eventstore""
        eventstore {
            connection-string = "esdb://admin:changeit@localhost:2113"
	    adapter = "default"
	    
	    prefix = ""
	    tenant = ""
        }
    }
}

Read Journal plugin

Please note that you need to cofigure write jouranl anyways since EventStore Persistance Query reuses connection from that journal.

To activate the journal plugin, add the following line to your HOCON config:

akka.persistence.query.journal.plugin = "akka.persistence.query.journal.eventstore"

This will run the journal with its default settings. The default settings can be changed with the configuration properties defined in your HOCON config:

HOCON Configuration
  • write-plugin - Absolute path to the write journal plugin configuration entry that this query journal will connect to. If undefined (or "") it will connect to the default journal as specified by the akka.persistence.journal.plugin property.
  • refresh-interval - The amount of time the plugin will wait between queries when it didn't find any events.
HOCON Configuration Example
akka.persistence.query.journal.eventstore {
    write-plugin = ""
    refresh-interval = 5s
}
Usage

To use standard queries please refer to documentation about Persistence Query on getakka.net website.

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.

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 Compatible and additional computed target framework versions.
.NET net6.0 is compatible.  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. 
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 Akka.Persistence.EventStore:

Package Downloads
Akka.Persistence.EventStore.Query The ID prefix of this package has been reserved for one of the owners of this package by NuGet.org.

Akka.NET Persistence read journal backed by EventStore.

Akka.Persistence.EventStore.Hosting The ID prefix of this package has been reserved for one of the owners of this package by NuGet.org.

Akka.Persistence.EventStore Microsoft.Extensions.Hosting support.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
1.5.18 51 4/9/2024
1.3.0 14,038 10/28/2018
1.0.0 803 10/18/2018

Upgrade to Akka 1.5.18 dependency
Upgrade to EventStore 23.2.1 dependency

**Breaking Changes**
This is a complete rewrite of the library to use Akka.NET 1.5.18 and EventStore 23.2.1. The library is now net6.0+.
See README for more details.