[erlang-questions] process priority

Ulf Wiger ulf.wiger@REDACTED
Mon Jul 4 13:19:15 CEST 2011


I assume the logging process writes to disk?

Are you running with a thread pool? If there is a lot of disk I/O, this can cause the emulator loop to block, unless there are enough I/O threads available.

I'm guessing the logging process has 'normal' priority right now? It is possible to set the priority of a gen_event process, e.g. by installing a handler (which gets to execute in the process context, thus being able to call process_flag(priority, P)). However, running a process at 'low' priority is generally not a good idea. It could cause the logging process to fall too much behind, and eventually running out of memory, or it could even in some cases lead to priority inversion, if the number of runnable normal-priority processes is significantly greater than the number of low-priority processes.

The runtime system does have one "feature", where it punishes the sender with extra reductions if the receiver's message queue is large. This could contribute to giving the logger process relatively more time than the other processes.

Fundamentally, though, you have to ensure that you don't produce more log output than your I/O subsystem can manage.

BR,
Ulf W

On 4 Jul 2011, at 12:31, Martin Dimitrov wrote:

> Hi,
> 
> we have implemented a logging mechanism that calls gen_event:notify
> which returns immediately but nevertheless when performing extensive
> logging some genserver calls time out. I came to the conclusion that the
> erlang process manager is giving more time to the logging process and
> thus other processes never receive a chance to handle their queues.
> 
> Is this conclusion possible or to seek the reason for the timeouts
> somewhere else? And if *yes* is it possible to give the logging process
> less priority?
> 
> Thanks,
> 
> Martin
> _______________________________________________
> erlang-questions mailing list
> erlang-questions@REDACTED
> http://erlang.org/mailman/listinfo/erlang-questions

Ulf Wiger, CTO, Erlang Solutions, Ltd.
http://erlang-solutions.com






More information about the erlang-questions mailing list