Re: [akka-user] Is Akka Persistence production ready.

2016-06-29 Thread vishal singh bhadouriya
CK ON LEVELDB" problem is coming >> just because of version mismatch or some other reason might be? >> >>>> >> >>>> >> >>>> On Tuesday, June 28, 2016 at 4:11:19 PM UTC+5:30, √ wrote: >> >>>>> >> >>>

Re: [akka-user] Is Akka Persistence production ready.

2016-06-28 Thread vishal singh bhadouriya
at 4:11:19 PM UTC+5:30, √ wrote: >>>>> >>>>> You're going to want to use the same Akka version for your Akka dependencies (I see that you're using 2.4.1 for akka-actor but 2.3.14 for persistence). >>>>> >>>>> On Tue, Jun 28, 2016 at 10:35 AM, vish

[akka-user] Is Akka Persistence production ready.

2016-06-28 Thread vishal singh bhadouriya
Hi Guys, I am using Akka Persistence in a business process where n number of entities are processing and each one in a different state at any moment, if system crashed then i am recovering using persistence. But sometimes i while restarting i am getting UNABLE TO ACQUIRE LOCK ON LEVELDB, to

[akka-user] Want to pause and resume child actors

2016-01-21 Thread vishal singh bhadouriya
i want the parent actor to pause all child actors after processing the message currently executing. and when the parent actor sends the resume command, the messages that were in queue at the time of pausing should resume. we tried passing control message to pause , we are successful. but how