Questions tagged [akka.net-persistence]
44 questions
0
votes
1 answer
Can I save the state of my entire Actor System in Akka.NET?
I've been reading through and researching a fair bit on Akka.NET and feel that it's a good fit for a very basic online multiplayer game that I will be developing.
I've been particular interested in the Persistence module within Akka.NET. What I…

ProxyTech
- 1,105
- 8
- 19
0
votes
1 answer
Problems testing mix of ReceiverActor and ReceivePersistentActor with Akka.Persistence.TestKit
Net users,
right now I'am developing an application which uses Actors inheriting from ReceiveActor and Actors inheriting from ReceivePersistentActor.
I'am using Akka.Net, Akka.Persistence, Akka.TestKit version 1.3.1 and Akka.Persistence.TestKit…

Richi
- 11
- 3
0
votes
1 answer
Akka.Persistence issues after updating to 1.3.1.0
Everything worked just fine .... then I decided to update to AKKA.NET to 1.3.1.0...
Got many issues, and resolved them, however I can't seem to find solution to this last one (I hope). Error Message:
--->…

Learning to program
- 69
- 9
0
votes
1 answer
akka.cluster and persistence delivering issue
In our cluster we have four nodes composite of:
2 seed nodes (backend)
1 worker
1 webapi on IIS
The cluster is joined, up and running; when i send a POST to the webapi,:
IIS join the cluster
the API recieve the a post and send the message with a…

Irvin Dominin
- 30,819
- 9
- 77
- 111
0
votes
1 answer
How does Akka.NET persistence handle replaying messages containing IActorRef?
If I send an Akka.NET actor a message which is an object containing an IActorRef, and then persist that message, the JSON written to the journal table looks like this:
{"$id":"1","$type":"LearningAkka.Program+BindReference,…

jameswilddev
- 582
- 7
- 16
0
votes
1 answer
De-Serialize akka.net persistence message using C#
I used akka.net persistence to store some message type in sql server database. And on that business scenario it works. In other case i just wanted to deserialize message using C# .net and see the message property without akka.net. how could it…

Amal Shalika
- 1,077
- 1
- 13
- 22
0
votes
2 answers
Why akka.persistence is still having beta release? Is it stable?
Why akka.persistence is still having beta release on nuget packages. Does it imply it is still not stable and not good for used in production applications?

Amal Shalika
- 1,077
- 1
- 13
- 22
0
votes
1 answer
How to create SHARED LIST for store objects for actor?
I want to calculate average complete time for a goods pick in giving store. Picking module will send a message with number of time to complete and store name when pick is complete to Actor A. Like wish each time it complete pick operation in…

Amal Shalika
- 1,077
- 1
- 13
- 22
0
votes
1 answer
Akka.net - Loads all journal data everytime I create a new object
Every time I create a new object of type in Akka.NET. The entire Journal of that type gets loaded in the constructor
My test:
[Test, Category("Integration")]
public async Task Should_Persist_Actor()
{
var model =…

KenL
- 865
- 5
- 14
0
votes
1 answer
Can I Read/Write from separate actors with same PersistenceId?
The Petabridge blog's Akka.Persistence intro makes it clear that you can't have multiple actors with the same PersistenceId:
The PersistenceId field is important - it uniquely identifies an entity that is persisting its state using…

Gigi
- 28,163
- 29
- 106
- 188
0
votes
1 answer
Why is Akka.Persistance not replaying my Journal entries
I am writing an implementation of the Akka.Persistence for Service Fabric, and I don't seem to be able to get the snapshotting working. When it attempts to recover state it gets the latest snapshot but it does not replay the events since the latest…

Noel
- 1,968
- 3
- 20
- 38
0
votes
1 answer
Akka.net: assuring a timeout message is always launched
Imagine you have an actor that has a "business" timeout on it. I would like that timeout to be launched even if the server where the actor lives dies or reboot. I would create that actor as persistent.
Which is the best way to assure that a timeout…

Pablo Castilla
- 2,723
- 2
- 28
- 33
0
votes
2 answers
Is there a working example of Akka.net Persistence with MongoDb out there anywhere?
I am attempting to configure Akka.Net with journal persistence to MongoDb but it is throwing an exception that I can't quite figure out. Is there a reference example out there anywhere I can look at to see how this is supposed to work? I would…

Mark Ewer
- 1,835
- 13
- 25
0
votes
1 answer
Is it possible to hook into the prestart method from F#?
In the current v.1.0 version of Akka.NET it is not possible to combine a FSM approach with persistency from the F# API. I was wondering if it is possible to use a functional approach like…

carstenj
- 693
- 5
- 13