Hi Silvio,

The following are the only things I can recommend you:

   - You have a short time to deliver? Why bother now with Artery if that's 
   the least of your problems? Your performance issue has nothing to do with 
   Akka Cluster or Akka Remote.
   - Why use a future? Your future is probably running at the default 
   dispatcher hence you are blocking at the wrong place !!!
   - Why don't you just dedicate a dispatcher for your worker actors and 
   just do your blocking call there with no future, a standard synchronous 
   call, in the worst scenarios messages will just accumulate at your workers 
   which is OK, you can set some expire time to not deal with then if they 
   have expired but please keep it simple, make it work at a decent speed and 
   then make it fast.

Try that and it should improve your performance, before you try more 
complex scenarios please read the Akka documentation or you will be slowing 
things rather than making them faster, start simple then add to it.

HTH,

Guido.

-- 
>>>>>>>>>>      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 https://groups.google.com/group/akka-user.
For more options, visit https://groups.google.com/d/optout.

Reply via email to