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
237 Views Asked by Tim Trewartha At
0
There are 0 best solutions below
Related Questions in DESERIALIZATION
- Deserialize XML with optional different name
- how to make aiogram.Message from telethon.Message
- JsonConvert.DeserializeObject with different property types needs to continue even after failing but collect the list of errors
- WebAPI don't deserialize JSON but same payload works in Swagger
- using symfony serializer groups didnt' work as well
- How to Use @JsonView Annotation for nested Object ( DTOs)
- Deserialize a field into 2 fields
- How I deserialize Avro from Kafka with spring boot 2.7.18
- Can ASP.NET Core deserialization set null in property if all children properties are nulls?
- how to fetch data when package structure deleted in source, but in couchbase document, _class with old package structure is present
- Java - Parse enum from api by text description
- How to deserialize json to C# class with arbitrary number of values and attributes
- C# Map JSON Serialization and Deserialization to Reference Object Using Object Property
- Multithreaded deserialization using BinaryFormatter
- Disable DeserializationFeature.FAIL_ON_NULL_CREATOR_PROPERTIES for an endpoint
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 - remember entities issue
- Akka.net readJournal plugin for inmem journal plugin
- How can I force Akka.net Postgres persistence to reconnect
- How to merge events from 2 Event Sourcing systems
- Akka.net Persistence Query -Events by Tag- stream order guarantee
- Best practice for cleaning up EntityStoppedManifest journal entries for permanently terminated actors?
- At What Point is a Persisted Actor Dehydrated/Terminated?
- Akka.NET with persistence dropping messages when CPU in under high pressure?
- Method not found: Akka.Pattern.CircuitBreaker.Create
- How can I ensure that mailbox messages will not be lost if the actors process is restarted - Akka.NET?
- By default where Akka.net stores its messages?
- Conditionally change Akka.Persistence Recovery object
- Akka.net journal reader missing events
- Akka.net persistence delete messages from a certain sequence number
- Akka.Net: how to create persistent views through a journal reader
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?