Re: [akka-user] Re: Akka persistence with AtLeastOnceDelivery - Replay only unconfirmed messages

2016-02-29 Thread Ganta Murali Krishna
Thanks Patrick. It did the trick. On Friday, 26 February 2016 18:59:58 UTC+5:30, Patrik Nordwall wrote: > > You can save snapshot to reduce number of replayed events. Note > documentation around snapshots and AtLeastOnceDelivery. > > > > On Fri, Feb 26, 2016 at 6:23 AM, Ganta Murali Krishna > wr

Re: [akka-user] Re: Akka persistence with AtLeastOnceDelivery - Replay only unconfirmed messages

2016-02-26 Thread Patrik Nordwall
You can save snapshot to reduce number of replayed events. Note documentation around snapshots and AtLeastOnceDelivery. On Fri, Feb 26, 2016 at 6:23 AM, Ganta Murali Krishna wrote: > > *Update:* If I call deleteMessages(deliveryId,permanent = true) after > confirmDelivery(deliveryId), then on

[akka-user] Re: Akka persistence with AtLeastOnceDelivery - Replay only unconfirmed messages

2016-02-25 Thread Ganta Murali Krishna
*Update:* If I call deleteMessages(deliveryId,permanent = true) after confirmDelivery(deliveryId), then only *MsgSent *are getting deleted. *MsgConfirmed *are still getting replayed on restart On Friday, 26 February 2016 09:23:21 UTC+5:30, Ganta Murali Krishna wrote: > > Hello, > > I am trying