[erlang-questions] High reduction count on init:loop

Ulf Wiger ulf@REDACTED
Mon Jan 19 13:56:01 CET 2015


> On 19 Jan 2015, at 12:19, Luis Rascão <luis.rascao@REDACTED> wrote:
> 
> I'm running load tests based on R16B03-1 and i'm looking at the reduction count using Fred's excellent recon tool (https://github.com/ferd/recon <https://github.com/ferd/recon>). I'm seeing a high reduction count on the init process ({<0.0.0>), the top 5 ranking for reduction count is below, init's reductions are a bit higher than the other 4 which are poolboy managers.


The init process evaluates the boot script. In a fairly large system, it can be expected to rack up a lot of reductions during system startup. After that, it should stay pretty quiet.

Example, starting a riak node:
(dev1@REDACTED)2> process_info(whereis(init),reductions).
{reductions,257559}

A few minutes later:
(dev1@REDACTED)3> process_info(whereis(init),reductions).
{reductions,257957}

BR,
Ulf W

Ulf Wiger, Co-founder & Developer Advocate, Feuerlabs Inc.
http://feuerlabs.com



-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://erlang.org/pipermail/erlang-questions/attachments/20150119/b75a52e5/attachment.htm>


More information about the erlang-questions mailing list