[akka-user] Do we rename the actor instance's name.

2016-08-11 Thread Vishal Singh
Hi All, Once we have created an actor instance, do we change name of it later. Thanks. -- >> 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] Is Akka Persistence production ready.

2016-06-29 Thread vishal singh bhadouriya
uire the filesystem mutex. > > You may want to consider removing the lock file after hard crash, rather > than deleting your journal completely. > > HTH, > > Mark > > > On Tuesday, 28 June 2016 14:06:03 UTC+1, Vishal Singh wrote: >> >> Multiple persistent actor

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

2016-06-28 Thread vishal singh bhadouriya
chine? > > On Tue, Jun 28, 2016 at 2:27 PM, Vishal Singh <bh.visha...@gmail.com> wrote: >> >> No not shared. >> >> On Tuesday, June 28, 2016 at 4:44:06 PM UTC+5:30, √ wrote: >>> >>> LevelDB is not for production usage FWIW. Are you using the s

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

2016-06-28 Thread Vishal Singh
No not shared. On Tuesday, June 28, 2016 at 4:44:06 PM UTC+5:30, √ wrote: > > LevelDB is not for production usage FWIW. Are you using the shared or > embedded one? > > On Tue, Jun 28, 2016 at 1:03 PM, Vishal Singh <bh.vi...@gmail.com > > wrote: > >> Thanks

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

2016-06-28 Thread Vishal Singh
te: > > Hi, > > As far as I know, the LevelDB plugin is not intended for production, but > only for development. For a reliable solution you should use a different > backend (Cassandra, for example). > > Tal > > > On Tuesday, June 28, 2016 at 1:08:24 PM UTC+3, Vishal Singh

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

2016-06-28 Thread Vishal Singh
some other reason might be? On Tuesday, June 28, 2016 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

[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