Hello, I was comparing the performance of linkedblockingqueue vs using router actor. I'm using play framework 2.3.x. So, plan is to queue each incoming request and process it later. Similar to producer-consumer problem. Dispatcher threads queue the requests into the queue and executorservice threads service the queue( the hosts have 2 cores). I was using a linkedblockingqueue implementation for this scenario and performance is not looking good. I see some spikes every minute which take about 600+ ms latency. Generally the requests take 20-30ms. (using Java 8)
I was wondering if I can use router actor with 5 workers in roundrobin fashion. But wondering if router actor can be become the bottleneck here ? request rate is 1500/s. -- Sreepathi -- >>>>>>>>>> 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.
