Hi Boris,
On Mon, Mar 24, 2014 at 4:19 PM, Boris Capitanu <[email protected]> wrote: > Thank you, Patrik. > > I think you hit the nail in the head with that ticket. I wanted to write > earlier that this felt like behavior you see when you have two nested "for" > loops: > > for i = N to 1 > for j = 1 to N > do_something > > The stash-unstash cycle you pointed out effectively behaves like the above > example... and the reason later messages get sent out faster is because > there is progressively less stashing to do. > Yes, I think this is the reason. Setting the backoff will reduce this somewhat, but it is not a fix -- just a way to quickly check what is happening. > > Is this a hard-to-implement fix? > Not any more. It is hard to fix in 2.2.x because we relied on the mailbox's property to keep messages during restart of an actor to not drop messages betwen reconnect attempts. Since now Gate is the only reconnect behavior and that drops, we no longer need Stash. -Endre > > -Boris > > -- > >>>>>>>>>> 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.
