Hi
I’m using Akka persistence.
My data consists of a fairly large and complex model used for logistics planning and optimisation.
In the context it’s used, it makes sense for me to use event sourcing on the whole model and some form of snapshot of the whole model
In json I guess the model will take up about 0.5mb and I’d probably snapshot every 15 minutes or so.
All the examples I’ve seen for eventstore seem to write only small things to the database.
Are larger objects appropriate? Would you expect any problems (especially with respect to the Akka persistence drivers)?
Thanks
Tim