Hi Jeff, On Thu, Apr 9, 2015 at 7:59 AM, Jeff <[email protected]> wrote:
> I am building an actor system that basically has a topology of spray -> > business logic actor -> slick. I initially built these using akka remote, > but have recently switch over to akka cluster. In testing these systems, I > have noticed that round trip calls through the system take half the time > using akka cluster as they did using akka remote. Literally, the only thing > changed between benchmarks is the actor provider. Why would akka cluster > provider perform so much better on identical workloads? I was under the > impression that akka cluster built on top of akka remote. > This is indeed strange. ClusterActorRefProvider actually extends RemoteActorRefProvider: https://github.com/akka/akka/blob/8485cd2ebb46d2fba851c41c03e34436e498c005/akka-cluster/src/main/scala/akka/cluster/ClusterActorRefProvider.scala#L26 Do you have a small example that demonstrates this? It would be interesting to investigate what is the source of difference. Maybe deathwatch, I don't know. -Endre > -- > >>>>>>>>>> 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. > -- >>>>>>>>>> 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.
