Re: [akka-user] Re: File based mailbox - Files under _mb location grows large consistently without getting cleared

2015-01-09 Thread aramankandath
Hi Jonas, Thanks for the reply. I can probably think of moving to Akka Persistence for our current release project. But, it will be impossible to do it for the previous version which is in production. Do we have any way to get it resolved i? We are on 2.1.0-2.2.1. Regards, Anoop On Friday,

[akka-user] Re: File based mailbox - Files under _mb location grows large consistently without getting cleared

2015-01-08 Thread aramankandath
I could see a similar issue was discussed in the below thread from Daniele. https://groups.google.com/forum/#!searchin/akka-user/file$20based/akka-user/0Yt78n73a4o But, I couldn't find an answer there for the files growing big issue. On Friday, January 9, 2015 at 11:56:39 AM UTC+5:30,

[akka-user] File based mailbox - Files under _mb location grows large consistently without getting cleared

2015-01-08 Thread aramankandath
Hi Akka Users, I have a problem with actors using the file based mailbox. The size of mailbox files under _mb folder keeps on increasing as the number of messages are processed. All messages are getting processed fine in the system, so shouldn't they be removed from the file when completed? I

[akka-user] Message sequencing with consistent hashable envelope

2014-09-17 Thread aramankandath
Hi Team, We are using akka 2.10-2.2.1 for building a load balancing framework for message processing. We have requirement for both sequenced as well as parallel processing. For sequencing, we wrap messages in a ConsistentHashableEnvelope so that it will get processed in one particular actor

[akka-user] Restarting Actor System in JBoss application server

2014-09-16 Thread aramankandath
Hi All, We are running our akka (2.10-2.2.1) actor system inside JBoss EAP 6.1. In one of the flows, we have a requirement to restart the actor system. We achieve this by calling ActorSystem.shutdown() method. But, the subsequent ActorSystem.create() call fails with a bind exception . I can

Re: [akka-user] Restarting Actor System in JBoss application server

2014-09-16 Thread aramankandath
Hi Konrad, Thanks for the reply. I have a Thread.sleep() for 30 seconds before I go ahead with ActorSystem.create(). Shouldn't that be enough? Also, if shutdown() has been completed, will the TCP port get freed up? I don't see that happening if I call shutdown() and don't start again. Port