I found it quite odd that eventsourced needs the underlying implementation to support arbitrary deletes as this breaks many good things. What is the use case they are needed for?
Is this something that can be done without deleting of events?
--
Studying for the Turing test
--
You received this message because you are subscribed to the Google Groups "Eventsourced User List" group.
To unsubscribe from this group and stop receiving emails from it, send an email to eventsourced...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
-- Martin Krasser blog: http://krasserm.blogspot.com code: http://github.com/krasserm twitter: http://twitter.com/mrt1nz
Compensating invalid (but already journaled) commands when doing command sourcing, and persistent channels (where acks delete messages persisted by a channel).
On 27.05.14 21:49, Greg Young wrote:
I found it quite odd that eventsourced needs the underlying implementation to support arbitrary deletes as this breaks many good things. What is the use case they are needed for?
You can cheat by only adding deletion markers (tombstones) but never physically delete individual messages. This is only an issue for applications that want to delete messages for saving disk space.
Is this something that can be done without deleting of events?
--
----
Studying for the Turing test
You received this message because you are subscribed to the Google Groups "Eventsourced User List" group.
To unsubscribe from this group and stop receiving emails from it, send an email to eventsourced...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
-- Martin Krasser blog: http://krasserm.blogspot.com code: http://github.com/krasserm twitter: http://twitter.com/mrt1nz
You received this message because you are subscribed to the Google Groups "Eventsourced User List" group.
To unsubscribe from this group and stop receiving emails from it, send an email to eventsourced...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
Patrik Nordwall
Typesafe - Reactive apps on the JVM
Twitter: @patriknw
Thats great it will drastically clean up our implementation. We also have a native delete up to seq operation :)
Can we control how often that is called?