Rafał Sobota
Rafał Sobota

Reputation: 1468

Sandboxing and monitoring of Akka actors

I want to run several of my simple REST applications in one Akka actor system to save memory and scale them all in a simple way. Can I prevent them from each other and be sure that none of them could crash entire system? Can I prevent system from blocking threads and infinite memory consumption in any of my application logic?

Upvotes: 2

Views: 340

Answers (1)

Viktor Klang
Viktor Klang

Reputation: 26589

What you ask for is impossible on the JVM.

Upvotes: 5

Related Questions