Re: [akka-user] Force replay messages in akka-persistence

2014-07-17 Thread Konrad Malawski
Hello Andrey, Have you read the docs about recovery http://doc.akka.io/docs/akka/2.3.4/scala/persistence.html#recovery ? You can start recovery by sending an Recover(toSequenceNr: Long) message to yourself. We do not support ranged (as in “from 200 to 400”) playback, skipping events (the “from N”)

[akka-user] Force replay messages in akka-persistence

2014-07-16 Thread Andrey Kouznetsov
Cheers to the community! Here are some principal questions about akka-persistence: I need to have full events log and access to its portions by starting sequenceNr and limit. Is using akka-persistence a good practice for this? If yes, what is the right way to access to journal log? Can I force