Re: [akka-user] Re: Akka Cluster + Leveldb : Persistence failure when replaying events for ...

2016-07-25 Thread Manoj Santhakumaran
Hi Justin, Thank you very much for the link to Cassandra Cluster Manager (CCM). I will try that out this week. I also find Redis plugin interesting as it is easy to connect to an existing Redis installation and proceed with my task. Manoj

Re: [akka-user] Re: Akka Cluster + Leveldb : Persistence failure when replaying events for ...

2016-07-25 Thread Manoj Santhakumaran
Hi Patrik, Thank you very much for your response. I helped me a lot. Much appreciated. Manoj On Friday, 22 July 2016 00:19:12 UTC-7, Patrik Nordwall wrote: > > That is a setup that is not supported. It's clearly documented that it's > not intended for production usage. > > /Patrik > > --

Re: [akka-user] Re: Akka Cluster + Leveldb : Persistence failure when replaying events for ...

2016-07-22 Thread Patrik Nordwall
That is a setup that is not supported. It's clearly documented that it's not intended for production usage. /Patrik fre 22 juli 2016 kl. 03:13 skrev Manoj Santhakumaran : > Hi Patrik, > > Thank you very much for your reply. > > Correct me if I'm wrong. By "single point of failure" what I meant wa

Re: [akka-user] Re: Akka Cluster + Leveldb : Persistence failure when replaying events for ...

2016-07-21 Thread Manoj Santhakumaran
Hi Patrik, Thank you very much for your reply. Correct me if I'm wrong. By "single point of failure" what I meant was, in case of any failure in the primary node, the events which is not yet persisted in the leveldb will be lost. But the events which is already persisted should be available in

Re: [akka-user] Re: Akka Cluster + Leveldb : Persistence failure when replaying events for ...

2016-07-21 Thread Justin du coeur
Just an observation: this is a common enough point of confusion that I actually think y'all might want to consider removing the LevelDB default. As I recently discovered, it's almost ridiculously easy to boot up a local Cassandra development "cluster" using ccm . (W

Re: [akka-user] Re: Akka Cluster + Leveldb : Persistence failure when replaying events for ...

2016-07-20 Thread Patrik Nordwall
SharedLeveldbJournal is not resillient. It's a single point of failure since it is only running on one node. It's only intended for demo examples. Please use a real distributed jounal, such as akka-persistence-cassandra /Patrik tors 21 juli 2016 kl. 01:24 skrev Manoj Santhakumaran : > Hi All, > >

[akka-user] Re: Akka Cluster + Leveldb : Persistence failure when replaying events for ...

2016-07-20 Thread Manoj Santhakumaran
Hi All, Today I analyzed by consuming cluster events. When first node is down, I got only an UnreachableMember event. I was expecting a MemberRemoved or MemberExited event after UnreachableMember. Is that correct? I didn't get either of them. Is this because I have only two nodes in the cluster