We are using Akka.net with persistence (using PostgreSQL) and storing custom events in the event store. During development/testing events may be added to the event store which at some point in the future I will wish to delete/ignore. What is the best way to go about this? I know I can manually remove them or make the event idempotent so that it doesn't change the actors state. Ideally I would also like any events which fail to deserialize from the event store (say because the required deserialization type no longer exists) to be ignored. Is it possible to ignore deserialization failures when replaying Akka.net persistence events? At present if any event fails to deserialize the actor remains in an inconsistent state. I have tried searching and not found anything. Thanks
Ignore Akka Persistence Replay Failures
233 Views Asked by Tim Trewartha At
0
There are 0 best solutions below
Related Questions in DESERIALIZATION
- Serializing to disk and deserializing Scala objects using Pickling
- Serializable class with ISerializable constructor
- Serializing a struct whose definition is not known
- reading data from a serialized file containing multiple objects
- XML Deserialize Java
- How to covert JSON field name to a Java compatible property name while doing Jackson de-serialisation?
- Convert any class to a keyvaluepair
- XmlElement filter by attribute
- Order of performing sorting on a big JSON object
- Deserialize string in generic method c#
- Receiving a "System.Runtime.Serialization.InvalidDataContractException" when deserializing a json object in a Online Dynamics CRM 2015 custom workflow
- Redis Serialization and Deserialization
- Does Java have builtin ability or standard patterns for static deserialization?
- RestSharp Deserialization of empty string to Dictionary Error
- Deserializing JSON into object with polymorphic setter methods using Jackson
Related Questions in AKKA.NET
- How to use TestKit in Akka.NET
- Testing Akka.NET's Context.Parent with TestKit
- Service Fabric, Akka.net and Persistent actor integration
- HOCON format for cluster router group?
- Akka design for Scraping
- Akka.NET + Photon Server
- Akka.Net Sending huge messages (maximum-frame-size)
- How to make Akka.NET's ClusterClient work?
- How to distinguish actor termination reason
- How to test DistributedPubSub with the TestKit in Akka.net?
- How to handle a stale akka.net remote iactorref
- AKKA.NET - Queuing and Retry
- Akka.net vs Orleans performance
- Is there any way to wait for actor to be completely stopped?
- How to connect a Xamarin Client to Akka.net
Related Questions in AKKA.NET-PERSISTENCE
- AKKA.NET - Queuing and Retry
- Akka.Persistence issues after updating to 1.3.1.0
- Conditionally change Akka.Persistence Recovery object
- By default where Akka.net stores its messages?
- Akka.Net: Custom table schema for EventJournal in Akka.Persistence.SqlServer
- Akka.NET with persistence dropping messages when CPU in under high pressure?
- Persistence failure when replaying events... System.NotSupportedException: Generic IDictionary are not yet supported
- How does Akka.NET persistence handle replaying messages containing IActorRef?
- akka.cluster and persistence delivering issue
- Problems testing mix of ReceiverActor and ReceivePersistentActor with Akka.Persistence.TestKit
- How to test akka.net persistent actors
- Ignore Akka Persistence Replay Failures
- Akka.Net and In memory peristence
- How to apply the EventBus of CQRS with Akka.net and Akka.Persistence
- Akka.net - remember entities issue
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?