W dniu środa, 13 maja 2015 16:46:14 UTC+2 użytkownik Robert O'Regan napisał: > > All the testing is being done on my local development machine (QuadCore > Macbook Pro with 16gb RAM). The application is running on spray-can. The > frontend (spray) and backend nodes are being kicked off on seperate JVM's > on the same machine by using different ports. > A single ActorSystem / VM will saturate all cores of a machine if you give it enough work to do. When you are running all VMs on the same box they are competing against one another for resources, moreover the the overhead caused both by JVM and Akka housekeeping is multiplied by the number of instances you run. Why don't you spin up a few nodes on Digital Ocean / AWS / GCE and run your test there? It should give you much better assessment of Akka's scalability.
Cheers, Rafał -- >>>>>>>>>> Read the docs: http://akka.io/docs/ >>>>>>>>>> Check the FAQ: >>>>>>>>>> http://doc.akka.io/docs/akka/current/additional/faq.html >>>>>>>>>> Search the archives: https://groups.google.com/group/akka-user --- You received this message because you are subscribed to the Google Groups "Akka User List" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To post to this group, send email to [email protected]. Visit this group at http://groups.google.com/group/akka-user. For more options, visit https://groups.google.com/d/optout.
