Increasing workers dynamically based on load

Poolboy alows resizing queue in case of traffic increase… The mecanism is described in the little elixir otp guidebook. Although syntax has changed with Elixir 1.6.x

The idea is to have a certain number of workers, that can be allocated to a certain task.

If the load increase, the number of workers is adjusted.

2 Likes