[akka-user] Re: akka shutdown pattern

2016-09-30 Thread Jean-François Côté
Hi, Actor system is built to support failure, this time it can be the deployment, the other time a network failure, etc. You never know. You must code something in the backend that will handle the retrying and wait for a completion message and then update its state to "completed". If your

[akka-user] Control how much cpu are used by the actor system?

2016-09-30 Thread Jean-François Côté
Hi guys! Is there any way to control how much cpu the akka system use over the total of cpu available in the JVM? For example, I would want all my actor system to only use 75% of the processing power available so that 2 of my 8 core is available for other system on the server. I've checked