Re: [akka-user] Why default-plugin-dispatcher is PinnedDispatcher thread-pool-executor ?

2016-11-10 Thread Endre Varga
Because there is no reason for a FJP executor. PinnedDispatcher dedicates a thread to an actor, there is no sharing and hence no work stealing. FJP is overkill in that case and makes no sense. -Endre On Thu, Nov 10, 2016 at 12:41 PM, Yaroslav Klymko wrote: > Hi guys, > > Just

[akka-user] Why default-plugin-dispatcher is PinnedDispatcher thread-pool-executor ?

2016-11-10 Thread Yaroslav Klymko
Hi guys, Just curious about reasoning to make `default-plugin-dispatcher` as default-plugin-dispatcher { type = PinnedDispatcher executor = "thread-pool-executor" } Why not a fork-join-executor ? -- >> Read the docs: http://akka.io/docs/ >> Check the FAQ: