I want to scale my application UP and DOWN depending on no of requests from users for this i want to share the same mailbox with all the presently running actors. I think Balancing Dispatcher will solve my problem as per his work stealing algorithm. But I am not able to figure out how to do it. I am new to akka framework. Some code samples about this will be really helpful. I have few questions regarding this,
1. How to lookup currently running ActorSystem ?
2. How to create actors on currently running remote ActorSystem ?
3. How to create BalancedDispatcher ?
4. How to share same instance of BalancedDispatcher ?
5. How exactly scalling UP and DOWN in akka works ?
Thanks in advance