=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:
parent
bc9d8da258
commit
6d5eca4d82
1 changed files with 13 additions and 0 deletions
|
|
@ -34,6 +34,19 @@ nodes. In this post we’ll 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 don’t 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 let’s 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
|
||||
===================
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue