[akka-user] source code for akka-stream

2014-10-09 Thread dpennell
Where can I find the source for akka-stream 0.7? I've looked in all the obvious (and quite a few unobvious) places. Thanks, -david -- Read the docs: http://akka.io/docs/ Check the FAQ: http://doc.akka.io/docs/akka/current/additional/faq.html Search the archives:

Re: [akka-user] akka.persistence, snapshots and deleting messages from journal

2014-02-19 Thread dpennell
Agreed - in our legacy system, we have a storage manager that removes old journals and snapshots as space is needed. The old journals are sometimes very useful for postmortem analysis. -david On Wednesday, February 19, 2014 2:45:17 AM UTC-5, Patrik Nordwall wrote: You can use deleteMessages

[akka-user] akka.persistence, snapshots and deleting messages from journal

2014-02-18 Thread dpennell
I would assume that a common scenario is to periodically snapshot state and keep 1 or more snapshots. In this case, I assume that as you delete older snapshots, you would also delete messages older than the snapshot from the journal in order to keep the journal from growing indefinitely. Is