Re: [akka-user] Speeding up actor system boot time in testing environment

2017-08-27 Thread Konrad “ktoso” Malawski
Still, why not do this in the same ActorSystem if you’re so concerned about start time. I’d also guess that that time is your actors or things starting, not just the AS, so cut down on things there. — Konrad `kto.so` Malawski Akka @ Lightbend On 28 August 2

Re: [akka-user] Speeding up actor system boot time in testing environment

2017-08-27 Thread Jakub Liska
> > Why do you need to start new systems? > For executing tasks in forked JVM. In order to establish communication between 2 processes, it needs TCP as retrieving results from a different process is hard without it. Those tasks are rather long running, so 800ms boot time doesn't matter at all

Re: [akka-user] Speeding up actor system boot time in testing environment

2017-08-27 Thread Konrad Malawski
Why do you need to start new systems? -- Konrad `ktoso` Malawski Akka @ Lightbend On 27 August 2017 at 16:59:02, Jakub Liska (liska.ja...@gmail.com) wrote: Hey, actor system boot time matters in distributed systems integration testing, otherwise spinning

[akka-user] Speeding up actor system boot time in testing environment

2017-08-27 Thread Jakub Liska
Hey, actor system boot time matters in distributed systems integration testing, otherwise spinning system 100 times in a test suite could take minutes. I currently cannot use multi JVM testing, so I'm wondering whether there is a way how to improve system boot time. Currently forking a JVM wit