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

2016-10-01 Thread Patrik Nordwall
On Linux you can use taskset to pin the jmv process to specific cores. fre 30 sep. 2016 kl. 19:56 skrev Konrad Malawski < konrad.malaw...@lightbend.com>: > That's what containers are for though. > Run your jvm in a container and restrict resources available to that one > > On 30 Sep 2016 19:48,

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

2016-09-30 Thread Konrad Malawski
That's what containers are for though. Run your jvm in a container and restrict resources available to that one On 30 Sep 2016 19:48, "Roland Kuhn" wrote: > Hi Jean-François, > > the JVM does not offer the functionality you seek, you'll have to use your > operating system’s

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

2016-09-30 Thread Roland Kuhn
Hi Jean-François, the JVM does not offer the functionality you seek, you'll have to use your operating system’s capabilities to restrict the resources available to the JVM itself. Regards, Roland Sent from my iPhone > On 30 Sep 2016, at 18:29, Jean-François Côté

[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