=doc add work pulling pattern to list of patterns

I've added it just underneath Derek's pattern as it's based on that one.
This commit is contained in:
Michael Pollmeier 2013-07-29 18:59:15 +12:00
parent bc9d8da258
commit 6d5eca4d82

View file

@ -34,6 +34,19 @@ nodes. In this post well explore the implementation of such a concept."
The pattern is described `Balancing Workload across Nodes with Akka 2 <http://letitcrash.com/post/29044669086/balancing-workload-across-nodes-with-akka-2>`_.
Work Pulling Pattern to throttle and distribute work, and prevent mailbox overflow
===============================
Contributed by: Michael Pollmeier
"This pattern ensures that your mailboxes dont overflow if creating work is fast than
actually doing it which can lead to out of memory errors when the mailboxes
eventually become too full. It also lets you distribute work around your cluster,
scale dynamically scale and is completely non-blocking. This pattern is a
specialisation of the above 'Balancing Workload Pattern'."
The pattern is described `Work Pulling Pattern to prevent mailbox overflow, throttle and distribute work <http://www.michaelpollmeier.com/akka-work-pulling-pattern/>`_.
Ordered Termination
===================